diff options
author | Kai Kang <kai.kang@windriver.com> | 2014-04-21 14:24:51 +0800 |
---|---|---|
committer | Joe MacDonald <joe@deserted.net> | 2014-04-24 21:07:46 -0400 |
commit | a277f303df123e050a98729415fed6a2590e7f76 (patch) | |
tree | dbbc845d3edb99234cb85a6c68e24f8e2066a9e7 /meta-networking/recipes-protocols/quagga | |
parent | 182c235bd97cfeda861fccda3634104a61bf5e79 (diff) | |
download | meta-openembedded-a277f303df123e050a98729415fed6a2590e7f76.tar.gz |
quagga: fix QA warning
When build quagga, it shows QA warnings:
WARNING: QA Issue: ELF binary '/home/build/poky/build/tmp/work/i586-poky-linux/quagga/0.99.21-r2.0/packages-split/quagga-bgpd/usr/sbin/bgpd' has relocations in .text
WARNING: QA Issue: ELF binary '/home/build/poky/build/tmp/work/i586-poky-linux/quagga/0.99.21-r2.0/packages-split/quagga-ripngd/usr/sbin/ripngd' has relocations in .text
The configure script tests compiler whether support option '-fPIE'. If
support, it pass option '-fPIE' to compiler then cause these QA
warnings.
Disable configure script to check option '-fPIC'.
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Joe MacDonald <joe@deserted.net>
Diffstat (limited to 'meta-networking/recipes-protocols/quagga')
-rw-r--r-- | meta-networking/recipes-protocols/quagga/quagga.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-networking/recipes-protocols/quagga/quagga.inc b/meta-networking/recipes-protocols/quagga/quagga.inc index 612720573..f043725be 100644 --- a/meta-networking/recipes-protocols/quagga/quagga.inc +++ b/meta-networking/recipes-protocols/quagga/quagga.inc | |||
@@ -63,6 +63,7 @@ EXTRA_OECONF = "--sysconfdir=${sysconfdir}/quagga \ | |||
63 | --enable-logfile-mask=0640 \ | 63 | --enable-logfile-mask=0640 \ |
64 | --enable-rtadv \ | 64 | --enable-rtadv \ |
65 | --enable-linux24-tcp-md5 \ | 65 | --enable-linux24-tcp-md5 \ |
66 | ap_cv_cc_pie=no \ | ||
66 | ${SNMP_CONF}" | 67 | ${SNMP_CONF}" |
67 | 68 | ||
68 | do_install () { | 69 | do_install () { |