diff options
author | Philippe Coval <philippe.coval@open.eurogiciel.org> | 2014-12-17 16:46:29 -0500 |
---|---|---|
committer | Gene Cumm <gene.cumm@gmail.com> | 2015-01-05 20:43:13 -0500 |
commit | be645d7a9848847388a662f6c0f7571d52ed7a05 (patch) | |
tree | 8074428b499d413984e372b8d2a0841a4662b4cf /com32/rosh | |
parent | 5932f124bce94b662b0b7dc9b79cdc4802d4731c (diff) | |
download | syslinux-be645d7a9848847388a662f6c0f7571d52ed7a05.tar.gz syslinux-be645d7a9848847388a662f6c0f7571d52ed7a05.tar.xz syslinux-be645d7a9848847388a662f6c0f7571d52ed7a05.zip |
build: sort sources to build in a more deterministic way
It has been observed that binaries contents
are depending on the order of linked objects.
This order is caused by GNU make's wildcard function
and the position of sources on filesystem.
This change tries to prevent this kind of randomness.
Also consider building using -j1 flag
to make it even more reproductible.
Change-Id: Ie8eee7f336e6f1fa2863c4150d967afd15519f1d
Bug: http://bugzilla.syslinux.org/show_bug.cgi?id=57#related
Signed-off-by: Philippe Coval <philippe.coval at open.eurogiciel.org>
Diffstat (limited to 'com32/rosh')
-rw-r--r-- | com32/rosh/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/rosh/Makefile b/com32/rosh/Makefile index 4d900f4f..0d49eece 100644 --- a/com32/rosh/Makefile +++ b/com32/rosh/Makefile @@ -27,7 +27,7 @@ include $(MAKEDIR)/rosh.mk # official release. Otherwise, substitute a hex string that is pretty much # guaranteed to be unique to be unique from build to build. ifndef HEXDATE -HEXDATE := $(shell $(PERL) $(topdir)/now.pl $(SRCS) $(wildcard *.h)) +HEXDATE := $(shell $(PERL) $(topdir)/now.pl $(SRCS) $(sort $(wildcard *.h))) endif ifndef DATE DATE := $(shell sh $(topdir)/gen-id.sh $(VERSION) $(HEXDATE)) |