summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-04-17 20:16:22 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-04-17 20:16:22 +0000
commit8527d69354f2515fe443a805c8ec5e3598a4df35 (patch)
tree76fb7574e2b40b07b853b8d18095b130e7e84b22 /Makefile
parent25ab2e0c62df1a768d476060322b2cf54a5aa486 (diff)
Removing some ! which the shell on jalapeno didn't like.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1561 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 3ddea299..6da8585f 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@
#
#
# @enddesc
-# @version $Id: Makefile,v 1.85 2000-04-17 18:33:16 goodale Exp $
+# @version $Id: Makefile,v 1.86 2000-04-17 20:16:22 goodale Exp $
# @@*/
##################################################################################
@@ -560,7 +560,7 @@ $(addsuffix -config,$(CONFIGURATIONS)):
echo $(DIVIDER)
if test -z "$(THORNLIST)" || (test -n "$(THORNLIST)" && test -e "$(THORNLIST_DIR)/$(THORNLIST)") ; \
then \
- if ! ($(SETUP_ENV) $(PERL) -s $(SETUP) -reconfig=1 $(SETUP_OPTIONS) $(@:%-config=%)) ; then \
+ if ($(SETUP_ENV) $(PERL) -s $(SETUP) -reconfig=1 $(SETUP_OPTIONS) $(@:%-config=%)) ; then : ; else \
echo "" ; \
echo "Error reconfiguring $@" ; \
exit 2 ; \
@@ -595,7 +595,7 @@ endif
echo Setting up new configuration $(@:%-config=%); \
if test -z "$(THORNLIST)" || (test -n "$(THORNLIST)" && test -e "$(THORNLIST_DIR)/$(THORNLIST)") ; \
then \
- if ! ($(SETUP_ENV) $(PERL) -s $(SETUP) $(SETUP_OPTIONS) $@) ; then \
+ if ($(SETUP_ENV) $(PERL) -s $(SETUP) $(SETUP_OPTIONS) $@) ; then : ; else \
echo "" ; \
echo "Error creating configuration $@" ; \
exit 2 ; \
@@ -780,7 +780,7 @@ downsize:
echo Setting up new configuration $@ ; \
if test -z "$(THORNLIST)" || (test -n "$(THORNLIST)" && test -e "$(THORNLIST_DIR)/$(THORNLIST)") ; \
then \
- if ! ($(SETUP_ENV) $(PERL) -s $(SETUP) $(SETUP_OPTIONS) $@) ; then \
+ if ($(SETUP_ENV) $(PERL) -s $(SETUP) $(SETUP_OPTIONS) $@) ; then : ; else\
echo "" ; \
echo "Error creating configuretion $@" ; \
exit 2 ; \