diff options
author | Brian <[email protected]> | 2007-08-07 21:51:46 +0100 |
---|---|---|
committer | Brian <[email protected]> | 2007-08-07 21:51:46 +0100 |
commit | 1223b75e63b0ecf72bdfa2e7c102bba4bfa398ee (patch) | |
tree | a036e112392a5f4b7fd07014297ec544d140bb8e | |
parent | 237b985356b4d791ee2f184a201de9704614b9b1 (diff) |
remove SHELL line, replace -e test with new logic (Daniel Stone)
-rw-r--r-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,7 +1,5 @@ # Top-level Mesa makefile -SHELL = /bin/bash - TOP = . SUBDIRS = src progs @@ -156,7 +154,7 @@ sunos5-v9 \ sunos5-v9-static \ sunos5-v9-cc-g++ \ ultrix-gcc: - @ if [ -e configs/current ] ; then \ + @ if test -f configs/current || test -L configs/current ; then \ echo "Please run 'make realclean' before changing configs" ; \ exit 1 ; \ fi |