summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-07-22 17:22:28 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-07-22 17:22:28 +0000
commit94e588ad946ee0d9c97e032e4b1a28b143b14d14 (patch)
treef884e2219bf2941d8e0bf3a82fbb57cd158cbd91 /Makefile
parent2b1f901bafd22ed94438ae6ae3caa6b39da2d93a (diff)
Changing test -e to test -r for portability.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1782 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 9e6dd934..d4b45980 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@
#
#
# @enddesc
-# @version $Id: Makefile,v 1.95 2000-07-19 09:48:24 goodale Exp $
+# @version $Id: Makefile,v 1.96 2000-07-22 17:22:28 goodale Exp $
# @@*/
##################################################################################
@@ -574,7 +574,7 @@ ifneq ($strip($(CONFIGURATIONS)),)
$(addsuffix -config,$(CONFIGURATIONS)):
echo $(DIVIDER)
- if test -z "$(THORNLIST)" || (test -n "$(THORNLIST)" && test -e "$(THORNLIST_DIR)/$(THORNLIST)") ; \
+ if test -z "$(THORNLIST)" || (test -n "$(THORNLIST)" && test -r "$(THORNLIST_DIR)/$(THORNLIST)") ; \
then \
if ($(SETUP_ENV) $(PERL) -s $(SETUP) -reconfig=1 $(SETUP_OPTIONS) $(@:%-config=%)) ; then : ; else \
echo "" ; \
@@ -609,7 +609,7 @@ endif
echo Setup cancelled ; \
else \
echo Setting up new configuration $(@:%-config=%); \
- if test -z "$(THORNLIST)" || (test -n "$(THORNLIST)" && test -e "$(THORNLIST_DIR)/$(THORNLIST)") ; \
+ if test -z "$(THORNLIST)" || (test -n "$(THORNLIST)" && test -r "$(THORNLIST_DIR)/$(THORNLIST)") ; \
then \
if ($(SETUP_ENV) $(PERL) -s $(SETUP) $(SETUP_OPTIONS) $(@:%-config=%)) ; then : ; else \
echo "" ; \
@@ -833,7 +833,7 @@ downsize:
echo Setup cancelled ; \
else \
echo Setting up new configuration $@ ; \
- if test -z "$(THORNLIST)" || (test -n "$(THORNLIST)" && test -e "$(THORNLIST_DIR)/$(THORNLIST)") ; \
+ if test -z "$(THORNLIST)" || (test -n "$(THORNLIST)" && test -r "$(THORNLIST_DIR)/$(THORNLIST)") ; \
then \
if ($(SETUP_ENV) $(PERL) -s $(SETUP) $(SETUP_OPTIONS) $@) ; then : ; else\
echo "" ; \