mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
ldns: fix QA Issue after LDFLAGS change
Adding -f*-prefix-map to LDFLAGS caused the following issue: QA Issue: ldns.pc failed sanity test (tmpdir) Fix by filtering out -f*-prefix-map from *.pc files. [YOCTO #14481] Signed-off-by: Tony Battersby <tonyb@cybernetics.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
c40e01b0fc
commit
a4791bf2f3
|
|
@ -16,3 +16,10 @@ PACKAGECONFIG[drill] = "--with-drill,--without-drill"
|
|||
|
||||
EXTRA_OECONF = "--with-ssl=${STAGING_EXECPREFIXDIR} \
|
||||
libtool=${TARGET_PREFIX}libtool"
|
||||
|
||||
do_install:append() {
|
||||
sed -e 's@[^ ]*-ffile-prefix-map=[^ "]*@@g' \
|
||||
-e 's@[^ ]*-fdebug-prefix-map=[^ "]*@@g' \
|
||||
-e 's@[^ ]*-fmacro-prefix-map=[^ "]*@@g' \
|
||||
-i ${D}${libdir}/pkgconfig/*.pc
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user