diff options
author | Ian Lynagh <igloo@earth.li> | 2008-09-24 12:08:40 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-09-24 12:08:40 +0000 |
commit | 64137b1730defb4cb5ed95c54eec26014ee0fb27 (patch) | |
tree | 6f92046b62899e95ff1aedc56f78362b7a61facd /libraries | |
parent | 703b1252f70b660e9ae2d33f236c1868d3dca0a9 (diff) | |
download | haskell-64137b1730defb4cb5ed95c54eec26014ee0fb27.tar.gz |
Use test -f rather than test -e, for portability (Solaris)
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |