From 64137b1730defb4cb5ed95c54eec26014ee0fb27 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Wed, 24 Sep 2008 12:08:40 +0000 Subject: Use test -f rather than test -e, for portability (Solaris) --- libraries/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libraries') diff --git a/libraries/Makefile b/libraries/Makefile index 0f257dab1c..d122031fbb 100644 --- a/libraries/Makefile +++ b/libraries/Makefile @@ -17,7 +17,7 @@ # To add a new library to the tree, do # # darcs get http://darcs.haskell.org/packages/foo -# [ -e foo/configure.ac ] && ( cd foo && autoreconf ) +# [ -f foo/configure.ac ] && ( cd foo && autoreconf ) # make make.library.foo .PHONY: default_target -- cgit v1.2.1