From: Peter Eisentraut Date: Tue, 13 Mar 2001 19:28:02 +0000 (+0000) Subject: 'test -e' isn't portable. Use 'test -f'. X-Git-Tag: REL7_1~209 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e2f91389a579424d9b11d0ab4d0fa4cb9734c246;p=thirdparty%2Fpostgresql.git 'test -e' isn't portable. Use 'test -f'. --- diff --git a/contrib/Makefile b/contrib/Makefile index 4abba5686bf..05aa567a176 100644 --- a/contrib/Makefile +++ b/contrib/Makefile @@ -1,4 +1,4 @@ -# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.16 2001/02/11 02:18:48 momjian Exp $ +# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.17 2001/03/13 19:28:02 petere Exp $ subdir = contrib top_builddir = .. @@ -34,7 +34,7 @@ WANTED_DIRS = \ all install installdirs uninstall clean distclean maintainer-clean: for dir in $(WANTED_DIRS); do \ - if [ -e $$dir/Makefile ]; then \ + if [ -f $$dir/Makefile ]; then \ $(MAKE) -C $$dir $@; \ fi; \ done