41 lines
1.5 KiB
Diff
41 lines
1.5 KiB
Diff
|
The result of $(wildcard *) is random.
|
||
|
Sort input files to reduce build-compare noise.
|
||
|
---
|
||
|
tools/firmware/etherboot/patches/build-compare.patch | 19 +++++++++++++++++++
|
||
|
tools/firmware/etherboot/patches/series | 1 +
|
||
|
2 files changed, 20 insertions(+)
|
||
|
|
||
|
Index: xen-4.5.0-testing/tools/firmware/etherboot/patches/build-compare.patch
|
||
|
===================================================================
|
||
|
--- /dev/null
|
||
|
+++ xen-4.5.0-testing/tools/firmware/etherboot/patches/build-compare.patch
|
||
|
@@ -0,0 +1,19 @@
|
||
|
+The result of $(wildcard *) is random.
|
||
|
+Sort input files to reduce build-compare noise.
|
||
|
+---
|
||
|
+ ipxe/src/Makefile.housekeeping | 2 +-
|
||
|
+ 1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
+
|
||
|
+Index: ipxe/src/Makefile.housekeeping
|
||
|
+===================================================================
|
||
|
+--- ipxe/src/Makefile.housekeeping
|
||
|
++++ ipxe/src/Makefile.housekeeping
|
||
|
+@@ -773,7 +773,7 @@ BLIB = $(BIN)/blib.a
|
||
|
+ $(BLIB) : $(BLIB_OBJS) $(BLIB_LIST) $(MAKEDEPS)
|
||
|
+ $(Q)$(RM) $(BLIB)
|
||
|
+ $(QM)$(ECHO) " [AR] $@"
|
||
|
+- $(Q)$(AR) r $@ $(BLIB_OBJS)
|
||
|
++ $(Q)$(AR) r $@ $(sort $(BLIB_OBJS))
|
||
|
+ $(Q)$(RANLIB) $@
|
||
|
+ blib : $(BLIB)
|
||
|
+
|
||
|
Index: xen-4.5.0-testing/tools/firmware/etherboot/patches/series
|
||
|
===================================================================
|
||
|
--- xen-4.5.0-testing.orig/tools/firmware/etherboot/patches/series
|
||
|
+++ xen-4.5.0-testing/tools/firmware/etherboot/patches/series
|
||
|
@@ -2,3 +2,4 @@ boot_prompt_option.patch
|
||
|
build_fix_1.patch
|
||
|
build_fix_2.patch
|
||
|
build_fix_3.patch
|
||
|
+build-compare.patch
|