summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/libid3tag
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2021-04-28 19:50:56 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-05-01 22:48:17 +0100
commit08989d4f56d13172b744a40f92ca5ec944dc2279 (patch)
tree0d6141f8ac0539e3a35010dcc7d878e17c8e22df /meta/recipes-multimedia/libid3tag
parentbe3912baf9427a364c088fea31fde461ff7c1ebd (diff)
downloadpoky-08989d4f56d13172b744a40f92ca5ec944dc2279.tar.gz
libid3tag: Filter -ffile-prefix-map too
helps when compiler has -ffile-prefix-map flag which helps reproducibility as well (From OE-Core rev: c3799bfdcc37ef139061aef22d125873607b0965) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/libid3tag')
-rw-r--r--meta/recipes-multimedia/libid3tag/libid3tag/cflags_filter.patch8
1 files changed, 3 insertions, 5 deletions
diff --git a/meta/recipes-multimedia/libid3tag/libid3tag/cflags_filter.patch b/meta/recipes-multimedia/libid3tag/libid3tag/cflags_filter.patch
index 0d1d0dc381..1895748d1d 100644
--- a/meta/recipes-multimedia/libid3tag/libid3tag/cflags_filter.patch
+++ b/meta/recipes-multimedia/libid3tag/libid3tag/cflags_filter.patch
@@ -4,15 +4,13 @@ flags. We need those to generate reproducible binaries. Allow them through.
4Upstream-Status: Pending 4Upstream-Status: Pending
5Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 5Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
6 6
7Index: libid3tag-0.15.1b/configure.ac 7--- a/configure.ac
8=================================================================== 8+++ b/configure.ac
9--- libid3tag-0.15.1b.orig/configure.ac
10+++ libid3tag-0.15.1b/configure.ac
11@@ -99,6 +99,10 @@ do 9@@ -99,6 +99,10 @@ do
12 -mno-cygwin) 10 -mno-cygwin)
13 shift 11 shift
14 ;; 12 ;;
15+ -fmacro-prefix-map*|-fdebug-prefix-map*) 13+ -fmacro-prefix-map*|-fdebug-prefix-map*|-ffile-prefix-map*)
16+ CFLAGS="$CFLAGS $1" 14+ CFLAGS="$CFLAGS $1"
17+ shift 15+ shift
18+ ;; 16+ ;;