diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2016-09-07 01:28:36 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-08 00:32:43 +0100 |
commit | b673a562d1372633b88f94dd97cf3e598fcd197c (patch) | |
tree | baae0a1c0ff5b594862e88d882c1d609d522f085 /meta/recipes-bsp | |
parent | d021889ba9afd5629b976a550010813762473178 (diff) | |
download | poky-b673a562d1372633b88f94dd97cf3e598fcd197c.tar.gz |
pciutils: fix PACKAGECONFIG
The PACKAGECONFIG's value doens't go into EXTRA_OECONF, but
PACKAGECONFIG_CONFARGS.
Fixed:
pciutils-3.5.1: libpci rdepends on libudev, but it isn't a build dependency, missing eudev in DEPENDS or PACKAGECONFIG? [build-deps]
pciutils-3.5.1: pciutils rdepends on libudev, but it isn't a build dependency, missing eudev in DEPENDS or PACKAGECONFIG? [build-deps]
(From OE-Core rev: d941d66d714545eae589115db48f1243399711f2)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp')
-rw-r--r-- | meta/recipes-bsp/pciutils/pciutils_3.5.1.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-bsp/pciutils/pciutils_3.5.1.bb b/meta/recipes-bsp/pciutils/pciutils_3.5.1.bb index a84efd9ced..d32b119424 100644 --- a/meta/recipes-bsp/pciutils/pciutils_3.5.1.bb +++ b/meta/recipes-bsp/pciutils/pciutils_3.5.1.bb | |||
@@ -27,9 +27,9 @@ PCI_CONF_FLAG = "ZLIB=yes DNS=yes SHARED=yes" | |||
27 | do_configure () { | 27 | do_configure () { |
28 | ( | 28 | ( |
29 | cd lib && \ | 29 | cd lib && \ |
30 | # EXTRA_OECONF for this recipe could only possibly contain 'HWDB=yes/no', so we put it | 30 | # PACKAGECONFIG_CONFARGS for this recipe could only possibly contain 'HWDB=yes/no', |
31 | # before ./configure | 31 | # so we put it before ./configure |
32 | ${PCI_CONF_FLAG} ${EXTRA_OECONF} ./configure ${PV} ${datadir} ${TARGET_OS} ${TARGET_ARCH} | 32 | ${PCI_CONF_FLAG} ${PACKAGECONFIG_CONFARGS} ./configure ${PV} ${datadir} ${TARGET_OS} ${TARGET_ARCH} |
33 | ) | 33 | ) |
34 | } | 34 | } |
35 | 35 | ||