diff options
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl/0001-buildinfo-strip-sysroot-and-debug-prefix-map-from-co.patch | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl/0001-buildinfo-strip-sysroot-and-debug-prefix-map-from-co.patch b/meta/recipes-connectivity/openssl/openssl/0001-buildinfo-strip-sysroot-and-debug-prefix-map-from-co.patch index 80b62ab18c..949c788344 100644 --- a/meta/recipes-connectivity/openssl/openssl/0001-buildinfo-strip-sysroot-and-debug-prefix-map-from-co.patch +++ b/meta/recipes-connectivity/openssl/openssl/0001-buildinfo-strip-sysroot-and-debug-prefix-map-from-co.patch | |||
@@ -20,6 +20,11 @@ https://patchwork.openembedded.org/patch/147229/ | |||
20 | 20 | ||
21 | Upstream-Status: Inappropriate [OE specific] | 21 | Upstream-Status: Inappropriate [OE specific] |
22 | Signed-off-by: Martin Hundebøll <martin@geanix.com> | 22 | Signed-off-by: Martin Hundebøll <martin@geanix.com> |
23 | |||
24 | |||
25 | Update to fix buildpaths qa issue for '-fmacro-prefix-map'. | ||
26 | |||
27 | Signed-off-by: Kai Kang <kai.kang@windriver.com> | ||
23 | --- | 28 | --- |
24 | Configurations/unix-Makefile.tmpl | 10 +++++++++- | 29 | Configurations/unix-Makefile.tmpl | 10 +++++++++- |
25 | crypto/build.info | 2 +- | 30 | crypto/build.info | 2 +- |
@@ -29,7 +34,7 @@ diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tm | |||
29 | index 16af4d2087..54c162784c 100644 | 34 | index 16af4d2087..54c162784c 100644 |
30 | --- a/Configurations/unix-Makefile.tmpl | 35 | --- a/Configurations/unix-Makefile.tmpl |
31 | +++ b/Configurations/unix-Makefile.tmpl | 36 | +++ b/Configurations/unix-Makefile.tmpl |
32 | @@ -317,13 +317,21 @@ BIN_LDFLAGS={- join(' ', $target{bin_lflags} || (), | 37 | @@ -317,13 +317,22 @@ BIN_LDFLAGS={- join(' ', $target{bin_lflags} || (), |
33 | '$(CNF_LDFLAGS)', '$(LDFLAGS)') -} | 38 | '$(CNF_LDFLAGS)', '$(LDFLAGS)') -} |
34 | BIN_EX_LIBS=$(CNF_EX_LIBS) $(EX_LIBS) | 39 | BIN_EX_LIBS=$(CNF_EX_LIBS) $(EX_LIBS) |
35 | 40 | ||
@@ -43,6 +48,7 @@ index 16af4d2087..54c162784c 100644 | |||
43 | 48 | ||
44 | +CFLAGS_Q={- for (@{$config{CFLAGS}}) { | 49 | +CFLAGS_Q={- for (@{$config{CFLAGS}}) { |
45 | + s|-fdebug-prefix-map=[^ ]+|-fdebug-prefix-map=|g; | 50 | + s|-fdebug-prefix-map=[^ ]+|-fdebug-prefix-map=|g; |
51 | + s|-fmacro-prefix-map=[^ ]+|-fmacro-prefix-map=|g; | ||
46 | + } | 52 | + } |
47 | + join(' ', @{$config{CFLAGS}}) -} | 53 | + join(' ', @{$config{CFLAGS}}) -} |
48 | + | 54 | + |