abf8af324b
- Include systemd presets in 13.2 and older - bnc#897352 - Enable xencommons/xendomains only during fresh install - disable restart on upgrade because the toolstack is not restartable - adjust seabios, vgabios, stubdom and hvmloader build to reduce build-compare noise xen.build-compare.mini-os.patch xen.build-compare.smbiosdate.patch xen.build-compare.ipxe.patch xen.build-compare.vgabios.patch xen.build-compare.seabios.patch xen.build-compare.man.patch - Update to Xen 4.5.0 RC4 - Remove xend specific if-up scripts Recording bridge slaves is a generic task which should be handled by generic network code - Use systemd features from upstream requires updated systemd-presets-branding package - Update to Xen 4.5.0 RC3 - Set GIT, WGET and FTP to /bin/false - Use new configure features instead of make variables OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=337
31 lines
1.4 KiB
Diff
31 lines
1.4 KiB
Diff
Use stable strings to reduce build-compare noise.
|
|
Index: xen-4.5.0-testing/xen/Makefile
|
|
===================================================================
|
|
--- xen-4.5.0-testing.orig/xen/Makefile
|
|
+++ xen-4.5.0-testing/xen/Makefile
|
|
@@ -8,6 +8,9 @@ export XEN_FULLVERSION = $(XEN_VERSION
|
|
|
|
export XEN_WHOAMI ?= $(USER)
|
|
export XEN_DOMAIN ?= $(shell ([ -x /bin/dnsdomainname ] && /bin/dnsdomainname) || ([ -x /bin/domainname ] && /bin/domainname || echo [unknown]))
|
|
+export XEN_BUILD_DATE ?= $(shell LC_ALL=C date)
|
|
+export XEN_BUILD_TIME ?= $(shell LC_ALL=C date +%T)
|
|
+export XEN_BUILD_HOST ?= $(shell hostname)
|
|
|
|
export BASEDIR := $(CURDIR)
|
|
export XEN_ROOT := $(BASEDIR)/..
|
|
@@ -126,11 +129,11 @@ delete-unfresh-files:
|
|
|
|
# compile.h contains dynamic build info. Rebuilt on every 'make' invocation.
|
|
include/xen/compile.h: include/xen/compile.h.in .banner
|
|
- @sed -e 's/@@date@@/$(shell LC_ALL=C date)/g' \
|
|
- -e 's/@@time@@/$(shell LC_ALL=C date +%T)/g' \
|
|
+ @sed -e 's/@@date@@/$(XEN_BUILD_DATE)/g' \
|
|
+ -e 's/@@time@@/$(XEN_BUILD_TIME)/g' \
|
|
-e 's/@@whoami@@/$(XEN_WHOAMI)/g' \
|
|
-e 's/@@domain@@/$(XEN_DOMAIN)/g' \
|
|
- -e 's/@@hostname@@/$(shell hostname)/g' \
|
|
+ -e 's/@@hostname@@/$(XEN_BUILD_HOST)/g' \
|
|
-e 's!@@compiler@@!$(shell $(CC) $(CFLAGS) --version 2>&1 | head -1)!g' \
|
|
-e 's/@@version@@/$(XEN_VERSION)/g' \
|
|
-e 's/@@subversion@@/$(XEN_SUBVERSION)/g' \
|