diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2018-05-29 14:29:44 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-03 16:54:22 +0100 |
commit | d902a5f72b8a3b3f74e7716cc967fa53f8751b68 (patch) | |
tree | b029bbbbdbbb21dea6087a59d6a092137285ec99 | |
parent | c54147b286d72d7c4f8ca55a5a62f5d27bd5364a (diff) | |
download | openembedded-core-d902a5f72b8a3b3f74e7716cc967fa53f8751b68.tar.gz openembedded-core-d902a5f72b8a3b3f74e7716cc967fa53f8751b68.tar.bz2 openembedded-core-d902a5f72b8a3b3f74e7716cc967fa53f8751b68.zip |
distcc: move ASNEEDED over-ride into the distcc 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).
Re-apply change, which was previously merged and then reverted to
avoid conflicts with a distcc version update.
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/distro/include/as-needed.inc | 1 | ||||
-rw-r--r-- | meta/recipes-devtools/distcc/distcc_3.3.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 f2e7e7b588..9c235649b7 100644 --- a/meta/conf/distro/include/as-needed.inc +++ b/meta/conf/distro/include/as-needed.inc @@ -1,7 +1,6 @@ ASNEEDED = "-Wl,--as-needed" -ASNEEDED_pn-distcc = "" ASNEEDED_pn-openobex = "" TARGET_LDFLAGS += "${ASNEEDED}" diff --git a/meta/recipes-devtools/distcc/distcc_3.3.bb b/meta/recipes-devtools/distcc/distcc_3.3.bb index 40648e2142..33a64ce6d3 100644 --- a/meta/recipes-devtools/distcc/distcc_3.3.bb +++ b/meta/recipes-devtools/distcc/distcc_3.3.bb @@ -25,6 +25,8 @@ S = "${WORKDIR}/git" inherit autotools pkgconfig update-rc.d useradd systemd +ASNEEDED = "" + EXTRA_OECONF += "--disable-Werror PYTHON='' --disable-pump-mode" USERADD_PACKAGES = "${PN}" |