Andrew Geissler | 748a483 | 2020-07-24 16:24:21 -0500 | [diff] [blame] | 1 | configure.ac: override CONFIGURE_LINE |
| 2 | |
| 3 | For reproducible binaries, we need to report a constant CONFIGURE_LINE. |
| 4 | This patched is only applied for such builds. |
| 5 | |
| 6 | Upstream-Status: Inappropriate [oe specific] |
| 7 | |
| 8 | Signed-off-by: Joe Slater <joe.slater@windriver.com> |
| 9 | |
| 10 | |
| 11 | --- git.orig/configure.ac |
| 12 | +++ git/configure.ac |
| 13 | @@ -15,7 +15,10 @@ AC_PREREQ(2.69) |
| 14 | ################################################################################ |
| 15 | dnl -- Process this file with autoconf to produce a configure script. |
| 16 | AC_INIT |
| 17 | -CONFIGURE_LINE="$0 $@" |
| 18 | +dnl The default CONFIGURE_LINE has been overridden for reproducible binaries |
| 19 | +dnl CONFIGURE_LINE="$0 $@" |
| 20 | +CONFIGURE_LINE="configure parameters are not available for reproducible builds" |
| 21 | + |
| 22 | AC_CONFIG_SRCDIR([lib/device/dev-cache.h]) |
| 23 | AC_CONFIG_HEADERS([include/configure.h]) |
| 24 | |