diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2018-05-09 14:46:46 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-15 10:00:30 +0100 |
commit | b7b63b2681a1de0ecb0e09612913370cb9934d38 (patch) | |
tree | 56544de625ef9de2bb02b2bcfa8ef31c4dfc2f16 | |
parent | a4c29153c7ffef024b31e7e3a197a09758a7beb4 (diff) | |
download | openembedded-core-b7b63b2681a1de0ecb0e09612913370cb9934d38.tar.gz openembedded-core-b7b63b2681a1de0ecb0e09612913370cb9934d38.tar.bz2 openembedded-core-b7b63b2681a1de0ecb0e09612913370cb9934d38.zip |
pciutils: move ASNEEDED over-ride into the pciutils recipe
Move the recipe specific over-ride for ASNEEDED into the recipe to
make it more apparent that the over-ride is being applied (and that
it should be re-checked on version updates, etc).
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/conf/distro/include/as-needed.inc | 1 | ||||
-rw-r--r-- | meta/recipes-bsp/pciutils/pciutils_3.5.6.bb | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/meta/conf/distro/include/as-needed.inc b/meta/conf/distro/include/as-needed.inc index 305e654ca9..c67f2f3da3 100644 --- a/meta/conf/distro/include/as-needed.inc +++ b/meta/conf/distro/include/as-needed.inc @@ -2,7 +2,6 @@ ASNEEDED = "-Wl,--as-needed" ASNEEDED_pn-openobex = "" -ASNEEDED_pn-pciutils = "" ASNEEDED_pn-puzzles = "" ASNEEDED_pn-rpm = "" diff --git a/meta/recipes-bsp/pciutils/pciutils_3.5.6.bb b/meta/recipes-bsp/pciutils/pciutils_3.5.6.bb index b18b7da3ed..de974edcbd 100644 --- a/meta/recipes-bsp/pciutils/pciutils_3.5.6.bb +++ b/meta/recipes-bsp/pciutils/pciutils_3.5.6.bb @@ -38,6 +38,8 @@ export MANDIR = "${mandir}" EXTRA_OEMAKE = "-e MAKEFLAGS= ${PCI_CONF_FLAG}" +ASNEEDED = "" + # The configure script breaks if the HOST variable is set HOST[unexport] = "1" |