diff options
author | Khem Raj <raj.khem@gmail.com> | 2021-04-28 19:50:56 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-05-01 22:48:17 +0100 |
commit | 08989d4f56d13172b744a40f92ca5ec944dc2279 (patch) | |
tree | 0d6141f8ac0539e3a35010dcc7d878e17c8e22df /meta/recipes-multimedia | |
parent | be3912baf9427a364c088fea31fde461ff7c1ebd (diff) | |
download | poky-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')
-rw-r--r-- | meta/recipes-multimedia/libid3tag/libid3tag/cflags_filter.patch | 8 |
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. | |||
4 | Upstream-Status: Pending | 4 | Upstream-Status: Pending |
5 | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> | 5 | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> |
6 | 6 | ||
7 | Index: 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 | + ;; |