mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-30 13:00:02 +00:00
lvm2: allow for reproducible binary builds
Modify original method to eliminate conditional patching of configure.ac. Use SOURCE_DATE_EPOCH which is required for reproducible binaries. Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -1,23 +1,27 @@
|
|||||||
configure.ac: override CONFIGURE_LINE
|
configure.ac: override CONFIGURE_LINE
|
||||||
|
|
||||||
For reproducible binaries, we need to report a constant CONFIGURE_LINE.
|
For reproducible binaries, we need to report a constant CONFIGURE_LINE.
|
||||||
This patched is only applied for such builds.
|
|
||||||
|
|
||||||
Upstream-Status: Inappropriate [oe specific]
|
Upstream-Status: Pending
|
||||||
|
|
||||||
Signed-off-by: Joe Slater <joe.slater@windriver.com>
|
Signed-off-by: Joe Slater <joe.slater@windriver.com>
|
||||||
|
|
||||||
|
|
||||||
--- git.orig/configure.ac
|
--- git.orig/configure.ac
|
||||||
+++ git/configure.ac
|
+++ git/configure.ac
|
||||||
@@ -15,7 +15,10 @@ AC_PREREQ(2.69)
|
@@ -15,7 +15,15 @@ AC_PREREQ(2.69)
|
||||||
################################################################################
|
################################################################################
|
||||||
dnl -- Process this file with autoconf to produce a configure script.
|
dnl -- Process this file with autoconf to produce a configure script.
|
||||||
AC_INIT
|
AC_INIT
|
||||||
-CONFIGURE_LINE="$0 $@"
|
-CONFIGURE_LINE="$0 $@"
|
||||||
+dnl The default CONFIGURE_LINE has been overridden for reproducible binaries
|
+
|
||||||
+dnl CONFIGURE_LINE="$0 $@"
|
+dnl per reproducible-builds.org check SOURCE_DATE_EPOCH
|
||||||
+CONFIGURE_LINE="configure parameters are not available for reproducible builds"
|
+dnl
|
||||||
|
+if test -z "${SOURCE_DATE_EPOCH+set}" ; then
|
||||||
|
+ CONFIGURE_LINE="$0 $@"
|
||||||
|
+else
|
||||||
|
+ CONFIGURE_LINE="configure options are not available for reproducible builds"
|
||||||
|
+fi
|
||||||
+
|
+
|
||||||
AC_CONFIG_SRCDIR([lib/device/dev-cache.h])
|
AC_CONFIG_SRCDIR([lib/device/dev-cache.h])
|
||||||
AC_CONFIG_HEADERS([include/configure.h])
|
AC_CONFIG_HEADERS([include/configure.h])
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ SRC_URI = "git://sourceware.org/git/lvm2.git \
|
|||||||
file://0001-Avoid-bashisms-in-init-scripts.patch \
|
file://0001-Avoid-bashisms-in-init-scripts.patch \
|
||||||
file://0005-do-not-build-manual.patch \
|
file://0005-do-not-build-manual.patch \
|
||||||
file://0006-start-lvm2-monitor.service-after-tmp.mount.patch \
|
file://0006-start-lvm2-monitor.service-after-tmp.mount.patch \
|
||||||
${@bb.utils.contains('BUILD_REPRODUCIBLE_BINARIES','1','file://reproducible-build.patch','', d)} \
|
file://reproducible-build.patch \
|
||||||
"
|
"
|
||||||
|
|
||||||
SRCREV = "b9391b1b9f0b73303fa21f8f92574d17ce4c2b02"
|
SRCREV = "b9391b1b9f0b73303fa21f8f92574d17ce4c2b02"
|
||||||
|
|||||||
Reference in New Issue
Block a user