diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-07-24 17:26:08 +0100 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-07-27 23:28:29 -0700 |
commit | 4e85129a7d47baf3e32b815cbc277bff84e085a0 (patch) | |
tree | 61dd3c16f1461eab026f8eba541d7613c2be7b5a /meta/conf/bitbake.conf | |
parent | aea9d379ea217c78b64a81853ec3744188158008 (diff) | |
download | openembedded-core-4e85129a7d47baf3e32b815cbc277bff84e085a0.tar.gz openembedded-core-4e85129a7d47baf3e32b815cbc277bff84e085a0.tar.bz2 openembedded-core-4e85129a7d47baf3e32b815cbc277bff84e085a0.zip |
classes/rootfs_rpm: implement BAD_RECOMMENDATIONS for RPM
Add support for the BAD_RECOMMENDATIONS variable that can be used to
prevent specific packages from being installed via an RRECOMMENDS
relationship when using the RPM backend. (Previously this
functionality was only available when using ipk packaging.)
In the process this moves the defaulting of BAD_RECOMMENDATIONS (as
empty) to bitbake.conf since it is no longer specific to the ipk
backend, as well as unifying some of the code that creates the
configuration for smart for use on the host and target.
Fixes [YOCTO #3916].
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 62a3936744..07eb473190 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -753,6 +753,8 @@ COMBINED_FEATURES[vardeps] += "DISTRO_FEATURES MACHINE_FEATURES" SERIAL_CONSOLE ??= "" SERIAL_CONSOLES ??= "${@d.getVar('SERIAL_CONSOLE', True).replace(' ', ';')}" +BAD_RECOMMENDATIONS ?= "" + # Make sure MACHINE isn't exported # (breaks binutils at least) MACHINE[unexport] = "1" |