[oe-commits] [meta-openembedded] 02/05: ntp: Reproducible build: Use fixed path to posix shell

git at git.openembedded.org git at git.openembedded.org
Thu Nov 15 05:04:41 UTC 2018


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit 13335e4e8e4b91ac5cc52a6754f0478c07fc7005
Author: douglas.royds <douglas.royds at taitradio.com>
AuthorDate: Tue Nov 13 18:08:35 2018 +1300

    ntp: Reproducible build: Use fixed path to posix shell
    
    At configure time, the ntp build goes looking on the build machine for a posix
    shell, using `which` to find it. Under OE, it settles on hosttools/bash,
    resulting in this build host path being written into several binaries.
    This did not affect the Debian reproducibility project, presumably because it
    consistently found bash at /bin/bash.
    
    Don't go looking, just use a fixed path to /bin/sh instead.
    
    Upstream-Status: Submitted http://bugs.ntp.org/show_bug.cgi?id=3551
    Signed-off-by: Douglas Royds <douglas.royds at taitradio.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 .../ntp/reproducibility-fixed-path-to-posix-shell.patch   | 15 +++++++++++++++
 meta-networking/recipes-support/ntp/ntp_4.2.8p12.bb       |  1 +
 2 files changed, 16 insertions(+)

diff --git a/meta-networking/recipes-support/ntp/ntp/reproducibility-fixed-path-to-posix-shell.patch b/meta-networking/recipes-support/ntp/ntp/reproducibility-fixed-path-to-posix-shell.patch
new file mode 100644
index 0000000..571db75
--- /dev/null
+++ b/meta-networking/recipes-support/ntp/ntp/reproducibility-fixed-path-to-posix-shell.patch
@@ -0,0 +1,15 @@
+--- ntp-4.2.8p12.original/sntp/libopts/m4/libopts.m4	2018-11-12 17:54:57.747220846 +1300
++++ ntp-4.2.8p12/sntp/libopts/m4/libopts.m4	2018-11-12 18:00:50.626211641 +1300
+@@ -114,12 +114,6 @@
+   AC_PROG_SED
+   [while :
+   do
+-      POSIX_SHELL=`which bash`
+-      test -x "$POSIX_SHELL" && break
+-      POSIX_SHELL=`which dash`
+-      test -x "$POSIX_SHELL" && break
+-      POSIX_SHELL=/usr/xpg4/bin/sh
+-      test -x "$POSIX_SHELL" && break
+       POSIX_SHELL=`/bin/sh -c '
+           exec 2>/dev/null
+           if ! true ; then exit 1 ; fi
diff --git a/meta-networking/recipes-support/ntp/ntp_4.2.8p12.bb b/meta-networking/recipes-support/ntp/ntp_4.2.8p12.bb
index 536679f..53e4129 100644
--- a/meta-networking/recipes-support/ntp/ntp_4.2.8p12.bb
+++ b/meta-networking/recipes-support/ntp/ntp_4.2.8p12.bb
@@ -12,6 +12,7 @@ DEPENDS = "libevent"
 
 SRC_URI = "http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-${PV}.tar.gz \
            file://ntp-4.2.4_p6-nano.patch \
+           file://reproducibility-fixed-path-to-posix-shell.patch \
            file://reproducibility-respect-source-date-epoch.patch \
            file://ntpd \
            file://ntp.conf \

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list