diff options
author | Wenzong Fan <wenzong.fan@windriver.com> | 2013-06-06 17:28:10 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-11 15:38:01 +0100 |
commit | e486242db83297701803866bea971a2f1a1135fe (patch) | |
tree | d36d898f4faee6b246ba8fce166e8cedba9f1655 /meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb | |
parent | 95e23df258184acd54f605bf078e49c32bb657de (diff) | |
download | poky-e486242db83297701803866bea971a2f1a1135fe.tar.gz |
chkconfig: fix QA warning about unsafe references in binaries
This test is disabled in oe-core by default, but if we enable it, we'll
get following warnings:
+ WARN_QA = "unsafe-references-in-binaries unsafe-references-in-scripts"
WARNING: QA Issue: chkconfig: /sbin/chkconfig, installed in the \
base_prefix, requires a shared library under exec_prefix (/usr): \
libpopt.so.0 => /usr/lib64/libpopt.so.0
(From OE-Core rev: 18f5e6b80e1465e00242a2513a4bd90e0a2f3ff7)
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb')
-rw-r--r-- | meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb b/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb index 4c6985fd39..c6f8b1d44f 100644 --- a/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb +++ b/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb | |||
@@ -43,7 +43,8 @@ obey_variables () { | |||
43 | } | 43 | } |
44 | 44 | ||
45 | do_install() { | 45 | do_install() { |
46 | oe_runmake 'DESTDIR=${D}' 'INSTALLNLSDIR=${D}${datadir}/locale' install | 46 | oe_runmake 'DESTDIR=${D}' 'INSTALLNLSDIR=${D}${datadir}/locale' \ |
47 | 'BINDIR=${sbindir}' install | ||
47 | install -d ${D}${sysconfdir}/chkconfig.d | 48 | install -d ${D}${sysconfdir}/chkconfig.d |
48 | } | 49 | } |
49 | 50 | ||