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

Commit e2f9138

Browse files
committed
'test -e' isn't portable. Use 'test -f'.
1 parent fb8cdc2 commit e2f9138

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contrib/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.16 2001/02/11 02:18:48 momjian Exp $
1+
# $Header: /cvsroot/pgsql/contrib/Makefile,v 1.17 2001/03/13 19:28:02 petere Exp $
22

33
subdir = contrib
44
top_builddir = ..
@@ -34,7 +34,7 @@ WANTED_DIRS = \
3434

3535
all install installdirs uninstall clean distclean maintainer-clean:
3636
for dir in $(WANTED_DIRS); do \
37-
if [ -e $$dir/Makefile ]; then \
37+
if [ -f $$dir/Makefile ]; then \
3838
$(MAKE) -C $$dir $@; \
3939
fi; \
4040
done

0 commit comments

Comments
 (0)