Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit ca88243

Browse files
committed
Use more portable syntax for 'find'.
1 parent 41fde54 commit ca88243

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

GNUmakefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# PostgreSQL top level makefile
33
#
4-
# $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.15 2000/12/04 00:34:40 tgl Exp $
4+
# $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.16 2001/01/06 21:24:01 petere Exp $
55
#
66

77
subdir =
@@ -110,7 +110,7 @@ distcheck: $(distdir).tar.gz
110110
$(MAKE) -C $(distdir) install
111111
$(MAKE) -C $(distdir) uninstall
112112
@echo "checking whether \`$(MAKE) uninstall' works"
113-
test `find $(dummy) -not -type d | wc -l` -eq 0
113+
test `find $(dummy) ! -type d | wc -l` -eq 0
114114
$(MAKE) -C $(distdir) dist
115115
# Room for improvement: Check here whether this distribution tarball
116116
# is sufficiently similar to the original one.

0 commit comments

Comments
 (0)