blob: 0d1d0dc381c5ae8edb80cadaf6afc6388468d864 [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
7Index: libid3tag-0.15.1b/configure.ac
8===================================================================
9--- libid3tag-0.15.1b.orig/configure.ac
10+++ libid3tag-0.15.1b/configure.ac
11@@ -99,6 +99,10 @@ do
12 -mno-cygwin)
13 shift
14 ;;
15+ -fmacro-prefix-map*|-fdebug-prefix-map*)
16+ CFLAGS="$CFLAGS $1"
17+ shift
18+ ;;
19 -m*)
20 arch="$arch $1"
21 shift