]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
pciutils: fix PACKAGECONFIG
authorRobert Yang <liezhi.yang@windriver.com>
Wed, 7 Sep 2016 08:28:36 +0000 (01:28 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 7 Sep 2016 23:31:41 +0000 (00:31 +0100)
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]

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-bsp/pciutils/pciutils_3.5.1.bb

index a84efd9ced1d2ec474a759dd5084aa5f691df0e6..d32b119424b8fc405a56ffff9f9a72f4e189522e 100644 (file)
@@ -27,9 +27,9 @@ PCI_CONF_FLAG = "ZLIB=yes DNS=yes SHARED=yes"
 do_configure () {
        (
          cd lib && \
-         # EXTRA_OECONF for this recipe could only possibly contain 'HWDB=yes/no', so we put it
-         # before ./configure
-         ${PCI_CONF_FLAG} ${EXTRA_OECONF} ./configure ${PV} ${datadir} ${TARGET_OS} ${TARGET_ARCH}
+         # PACKAGECONFIG_CONFARGS for this recipe could only possibly contain 'HWDB=yes/no',
+         # so we put it before ./configure
+         ${PCI_CONF_FLAG} ${PACKAGECONFIG_CONFARGS} ./configure ${PV} ${datadir} ${TARGET_OS} ${TARGET_ARCH}
        )
 }