summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <sthibault@debian.org>2015-04-17 00:28:38 +0000
committerSamuel Thibault <sthibault@debian.org>2015-04-17 00:28:38 +0000
commit542d4ce2e5f03a6374b303c3b9a508be33b7a6c6 (patch)
tree1034bd00b72a9d6354a59cb0f167668a8ba5e8e4
parent97556d745e09a56fba108142eba57a3de7c95495 (diff)
downloadinstallation-guide-542d4ce2e5f03a6374b303c3b9a508be33b7a6c6.zip
Add missing "set -e" in build/Makefile to trap build failures.
-rw-r--r--build/Makefile1
-rw-r--r--debian/changelog3
2 files changed, 4 insertions, 0 deletions
diff --git a/build/Makefile b/build/Makefile
index 6377afc7b..5668cf151 100644
--- a/build/Makefile
+++ b/build/Makefile
@@ -5,6 +5,7 @@ TARGETS=$(foreach language,$(languages),$(addprefix $(language).,$(architectures
all: $(TARGETS)
$(TARGETS): %:
+ set -e ; \
target=$@ ; \
lang=$${target%.*} ; \
lang_id="$$(echo $$lang | tr A-Z a-z | sed "s/_/-/")" ; \
diff --git a/debian/changelog b/debian/changelog
index f17ef36e6..4c8db9f81 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -39,6 +39,9 @@ installation-guide (20150324) UNRELEASED; urgency=medium
* Remove the old hdX device names, switch to sdX for disks
* Various fixes for arm* support
+ [ Samuel Thibault ]
+ * Add missing "set -e" in build/Makefile to trap build failures.
+
-- Samuel Thibault <sthibault@debian.org> Sat, 28 Mar 2015 10:10:34 +0100
installation-guide (20150323) unstable; urgency=medium