summaryrefslogtreecommitdiff
path: root/support/dependencies
diff options
context:
space:
mode:
authorJérôme Pouiller <jezz@sysmic.org>2013-09-03 10:45:41 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2013-09-06 23:27:42 +0200
commit741cbccb746b4bda41c5a51bf2d9d8977c902439 (patch)
tree2f9e90e7480238652314c4be181aaf271eb1b95a /support/dependencies
parent055f1c02d35068d0b089f3b29ffdd4fb2717bb5c (diff)
Fix build reproducibility in Make 3.82
Make 3.82 no longer sort the result of wildcards (see http://comments.gmane.org/gmane.comp.gnu.make.bugs/4260). This may break build reproducibility. This patch sort results of wildcards to ensure reproducibility. Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'support/dependencies')
-rw-r--r--support/dependencies/dependencies.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/dependencies/dependencies.mk b/support/dependencies/dependencies.mk
index 4a220e0e0..149b8e5dc 100644
--- a/support/dependencies/dependencies.mk
+++ b/support/dependencies/dependencies.mk
@@ -14,7 +14,7 @@ DEPENDENCIES_HOST_PREREQ :=
define suitable-host-package
$(shell support/dependencies/check-host-$(1).sh $(2))
endef
--include support/dependencies/check-host-*.mk
+-include $(sort $(wildcard support/dependencies/check-host-*.mk))
ifeq ($(BR2_STRIP_sstrip),y)
DEPENDENCIES_HOST_PREREQ+=host-sstrip