summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--com32/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/Makefile b/com32/Makefile
index 7e7bfcb6..090ea93e 100644
--- a/com32/Makefile
+++ b/com32/Makefile
@@ -1,4 +1,4 @@
SUBDIRS = lib libutil modules samples
all tidy clean spotless install:
- for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
+ set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done