[Buildroot] [git commit branch/2020.08.x] package/lynx: fix reproducible build issues

Peter Korsgaard peter at korsgaard.com
Fri Dec 11 21:28:18 UTC 2020


commit: https://git.buildroot.net/buildroot/commit/?id=5a1a715bd11e7473b443797f1169edd5d78e991c
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2020.08.x

Fixes (part of) http://autobuild.buildroot.net/results/23fe4365ca65f37eace8265a70fbfb9723b8ee9d/

Lynx by default contains logic to generate a "configuration info" HTML page,
which leaks build paths, and adds the build timestamp to the version output.
Disable both when building in reproducible mode.

Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
(cherry picked from commit 3fb7c63687ac4a2d3ef07d2aa425b1922ad69792)
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/lynx/lynx.mk | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/package/lynx/lynx.mk b/package/lynx/lynx.mk
index 07a3ddfcf0..d115682d64 100644
--- a/package/lynx/lynx.mk
+++ b/package/lynx/lynx.mk
@@ -12,6 +12,13 @@ LYNX_LICENSE_FILES = COPYING
 
 LYNX_DEPENDENCIES = host-pkgconf $(TARGET_NLS_DEPENDENCIES)
 
+ifeq ($(BR2_REPRODUCIBLE),y)
+# configuration info leaks build paths
+LYNX_CONF_OPTS += --disable-config-info
+# disable build timestamp
+LYNX_CFLAGS += -DNO_BUILDSTAMP
+endif
+
 ifeq ($(BR2_PACKAGE_NCURSES),y)
 LYNX_DEPENDENCIES += ncurses
 LYNX_CONF_OPTS += --with-screen=ncurses$(if $(BR2_PACKAGE_NCURSES_WCHAR),w)
@@ -41,6 +48,6 @@ LYNX_DEPENDENCIES += libidn
 LYNX_LIBS += `$(PKG_CONFIG_HOST_BINARY) --libs libidn`
 endif
 
-LYNX_CONF_ENV = LIBS="$(LYNX_LIBS)"
+LYNX_CONF_ENV = LIBS="$(LYNX_LIBS)" CFLAGS="$(TARGET_CFLAGS) $(LYNX_CFLAGS)"
 
 $(eval $(autotools-package))


More information about the buildroot mailing list