blob: 1895748d1d0e51247e2eb514129e5ea7eac36a11 [file] [log] [blame]
Andrew Geissler90fd73c2021-03-05 15:25:55 -06001configure contains CFLAGS filtering code which was removing our prefix-map
2flags. We need those to generate reproducible binaries. Allow them through.
3
4Upstream-Status: Pending
5Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
6
Andrew Geisslerc926e172021-05-07 16:11:35 -05007--- a/configure.ac
8+++ b/configure.ac
Andrew Geissler90fd73c2021-03-05 15:25:55 -06009@@ -99,6 +99,10 @@ do
10 -mno-cygwin)
11 shift
12 ;;
Andrew Geisslerc926e172021-05-07 16:11:35 -050013+ -fmacro-prefix-map*|-fdebug-prefix-map*|-ffile-prefix-map*)
Andrew Geissler90fd73c2021-03-05 15:25:55 -060014+ CFLAGS="$CFLAGS $1"
15+ shift
16+ ;;
17 -m*)
18 arch="$arch $1"
19 shift