diff options
author | Ross Burton <ross.burton@intel.com> | 2014-11-13 14:08:20 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-20 14:06:30 +0000 |
commit | 23d7223a21582edefc4e30d76f94f8e81a543af9 (patch) | |
tree | ad15010f93f72969f5a52fea0cc65edfde918dcb /meta/recipes-connectivity/bind | |
parent | fec684512c6f934d7a847b0c9f5151da81426910 (diff) | |
download | openembedded-core-23d7223a21582edefc4e30d76f94f8e81a543af9.tar.gz openembedded-core-23d7223a21582edefc4e30d76f94f8e81a543af9.tar.bz2 openembedded-core-23d7223a21582edefc4e30d76f94f8e81a543af9.zip |
bind: use PACKAGE_BEFORE_PN instead of PACKAGES_prepend
Appending or prepending to PACKAGES breaks when the package is built natively,
so use PACKAGE_BEFORE_PN instead.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-connectivity/bind')
-rw-r--r-- | meta/recipes-connectivity/bind/bind_9.9.5.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/bind/bind_9.9.5.bb b/meta/recipes-connectivity/bind/bind_9.9.5.bb index ebd38effa7..73f386e6f1 100644 --- a/meta/recipes-connectivity/bind/bind_9.9.5.bb +++ b/meta/recipes-connectivity/bind/bind_9.9.5.bb @@ -46,7 +46,7 @@ PARALLEL_MAKE = "" RDEPENDS_${PN} = "python-core" -PACKAGES_prepend = " ${PN}-utils " +PACKAGE_BEFORE_PN += "${PN}-utils" FILES_${PN}-utils = "${bindir}/host ${bindir}/dig" FILES_${PN}-dev += "${bindir}/isc-config.h" FILES_${PN} += "${sbindir}/generate-rndc-key.sh" |