2015-01-14 21:58:52 +01:00
|
|
|
The result of $(wildcard *) is random.
|
|
|
|
Sort input files to reduce build-compare noise.
|
|
|
|
|
|
|
|
---
|
|
|
|
docs/Makefile | 6 +++---
|
|
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
|
2015-11-11 18:04:52 +01:00
|
|
|
Index: xen-4.6.0-testing/docs/Makefile
|
2015-01-14 21:58:52 +01:00
|
|
|
===================================================================
|
2015-11-11 18:04:52 +01:00
|
|
|
--- xen-4.6.0-testing.orig/docs/Makefile
|
|
|
|
+++ xen-4.6.0-testing/docs/Makefile
|
|
|
|
@@ -142,7 +142,7 @@ install: install-man-pages install-html
|
2015-01-14 21:58:52 +01:00
|
|
|
|
2015-11-11 18:04:52 +01:00
|
|
|
# Individual file build targets
|
2015-01-14 21:58:52 +01:00
|
|
|
html/index.html: $(DOC_HTML) $(CURDIR)/gen-html-index INDEX
|
|
|
|
- $(PERL) -w -- $(CURDIR)/gen-html-index -i INDEX html $(DOC_HTML)
|
|
|
|
+ $(PERL) -w -- $(CURDIR)/gen-html-index -i INDEX html $(sort $(DOC_HTML))
|
|
|
|
|
|
|
|
html/%.html: %.markdown
|
2015-11-11 18:04:52 +01:00
|
|
|
ifneq ($(MARKDOWN),)
|
|
|
|
@@ -165,8 +165,8 @@ html/hypercall/%/index.html: $(CURDIR)/x
|
2015-01-14 21:58:52 +01:00
|
|
|
$(INSTALL_DIR) $(@D)
|
|
|
|
$(PERL) -w $(CURDIR)/xen-headers -O $(@D) \
|
|
|
|
-T 'arch-$* - Xen public headers' \
|
|
|
|
- $(patsubst %,-X arch-%,$(filter-out $*,$(DOC_ARCHES))) \
|
|
|
|
- $(patsubst %,-X xen-%,$(filter-out $*,$(DOC_ARCHES))) \
|
|
|
|
+ $(sort $(patsubst %,-X arch-%,$(filter-out $*,$(DOC_ARCHES)))) \
|
|
|
|
+ $(sort $(patsubst %,-X xen-%,$(filter-out $*,$(DOC_ARCHES)))) \
|
|
|
|
$(EXTRA_EXCLUDE) \
|
|
|
|
$(XEN_ROOT)/xen include/public include/xen/errno.h
|
|
|
|
|