Skip to content
Snippets Groups Projects
Commit 86a7358f authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1997-12-04 12:13:45 by simonm]

fix the set -e business again.  I could have sworn I'd already done
this.
parent e8c534f4
No related merge requests found
...@@ -1012,7 +1012,7 @@ all docs runtests boot TAGS clean veryclean maintainer-clean install info :: ...@@ -1012,7 +1012,7 @@ all docs runtests boot TAGS clean veryclean maintainer-clean install info ::
@echo "===fptools== Recursively making \`$@' in $(SUBDIRS) ..." @echo "===fptools== Recursively making \`$@' in $(SUBDIRS) ..."
@echo "PWD = $(shell pwd)" @echo "PWD = $(shell pwd)"
@echo "------------------------------------------------------------------------" @echo "------------------------------------------------------------------------"
@case '${MFLAGS}' in -*[ik]*) set +e;; *) set -e;; esac; \ @case '${MFLAGS}' in *-[ik]*) set +e;; *) set -e;; esac; \
for i in $(SUBDIRS) ; do \ for i in $(SUBDIRS) ; do \
echo "------------------------------------------------------------------------"; \ echo "------------------------------------------------------------------------"; \
echo "==fptools== $(MAKE) $@;"; \ echo "==fptools== $(MAKE) $@;"; \
...@@ -1026,7 +1026,7 @@ all docs runtests boot TAGS clean veryclean maintainer-clean install info :: ...@@ -1026,7 +1026,7 @@ all docs runtests boot TAGS clean veryclean maintainer-clean install info ::
@echo "------------------------------------------------------------------------" @echo "------------------------------------------------------------------------"
dist :: dist ::
@case '${MFLAGS}' in -*[ik]*) set +e;; *) set -e;; esac; \ @case '${MFLAGS}' in *-[ik]*) set +e;; *) set -e;; esac; \
for i in $(SUBDIRS) ; do \ for i in $(SUBDIRS) ; do \
$(MKDIRHIER_PREFIX)mkdirhier $(SRC_DIST_DIR)/$$i; \ $(MKDIRHIER_PREFIX)mkdirhier $(SRC_DIST_DIR)/$$i; \
$(MAKE) -C $$i $(MFLAGS) $@ SRC_DIST_DIR=$(SRC_DIST_DIR)/$$i; \ $(MAKE) -C $$i $(MFLAGS) $@ SRC_DIST_DIR=$(SRC_DIST_DIR)/$$i; \
...@@ -1054,7 +1054,7 @@ all docs runtests TAGS clean veryclean maintainer-clean install :: ...@@ -1054,7 +1054,7 @@ all docs runtests TAGS clean veryclean maintainer-clean install ::
@echo "===fptools== Recursively making \`$@' for ways: $(WAYS) ..." @echo "===fptools== Recursively making \`$@' for ways: $(WAYS) ..."
@echo "PWD = $(shell pwd)" @echo "PWD = $(shell pwd)"
@echo "------------------------------------------------------------------------" @echo "------------------------------------------------------------------------"
@case '${MFLAGS}' in -*[ik]*) set +e;; *) set -e;; esac; \ @case '${MFLAGS}' in *-[ik]*) set +e;; *) set -e;; esac; \
for i in $(WAYS) ; do \ for i in $(WAYS) ; do \
echo "------------------------------------------------------------------------"; \ echo "------------------------------------------------------------------------"; \
echo "==fptools== $(MAKE) way=$$i $@;"; \ echo "==fptools== $(MAKE) way=$$i $@;"; \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment