summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-08-07 21:52:22 +0100
committerBrian <brian.paul@tungstengraphics.com>2007-08-07 21:52:22 +0100
commit510ff27eda6647e79f74d412925bc3b1a0d3fa56 (patch)
tree42b32e9908e3864e824fd5721d07797270f23a67 /Makefile
parent5abf0551008f401e1e291e9a295b8e66e02e01d6 (diff)
remove SHELL line, replace -e test with new logic (Daniel Stone)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 3cab262bf44..56efa83402c 100644
--- a/Makefile
+++ b/Makefile
@@ -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