summaryrefslogtreecommitdiffstats
path: root/linux
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 /linux
parent055f1c02d35068d0b089f3b29ffdd4fb2717bb5c (diff)
downloadbuildroot-741cbccb746b4bda41c5a51bf2d9d8977c902439.tar.gz
buildroot-741cbccb746b4bda41c5a51bf2d9d8977c902439.zip
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 'linux')
-rw-r--r--linux/linux.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/linux.mk b/linux/linux.mk
index 025fd51aba..8508a54242 100644
--- a/linux/linux.mk
+++ b/linux/linux.mk
@@ -281,7 +281,7 @@ define LINUX_INSTALL_TARGET_CMDS
$(LINUX_INSTALL_HOST_TOOLS)
endef
-include linux/linux-ext-*.mk
+include $(sort $(wildcard linux/linux-ext-*.mk))
$(eval $(generic-package))
OpenPOWER on IntegriCloud