Skip to content
Snippets Groups Projects
Commit ca882439 authored by Peter Eisentraut's avatar Peter Eisentraut
Browse files

Use more portable syntax for 'find'.

parent 41fde546
No related branches found
No related tags found
No related merge requests found
# #
# PostgreSQL top level makefile # PostgreSQL top level makefile
# #
# $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.15 2000/12/04 00:34:40 tgl Exp $ # $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.16 2001/01/06 21:24:01 petere Exp $
# #
subdir = subdir =
...@@ -110,7 +110,7 @@ distcheck: $(distdir).tar.gz ...@@ -110,7 +110,7 @@ distcheck: $(distdir).tar.gz
$(MAKE) -C $(distdir) install $(MAKE) -C $(distdir) install
$(MAKE) -C $(distdir) uninstall $(MAKE) -C $(distdir) uninstall
@echo "checking whether \`$(MAKE) uninstall' works" @echo "checking whether \`$(MAKE) uninstall' works"
test `find $(dummy) -not -type d | wc -l` -eq 0 test `find $(dummy) ! -type d | wc -l` -eq 0
$(MAKE) -C $(distdir) dist $(MAKE) -C $(distdir) dist
# Room for improvement: Check here whether this distribution tarball # Room for improvement: Check here whether this distribution tarball
# is sufficiently similar to the original one. # is sufficiently similar to the original one.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment