diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2015-05-11 19:13:53 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-14 11:41:12 +0100 |
commit | 1938a4435cd77494e539961bdfa907ae32a01147 (patch) | |
tree | 5810f4469abeab571b00b888cf3951abe8155c02 /meta/recipes-connectivity/bind | |
parent | 2176e77f9dd4bbfc0a032e63ab0ec87847d660d3 (diff) | |
download | openembedded-core-1938a4435cd77494e539961bdfa907ae32a01147.tar.gz openembedded-core-1938a4435cd77494e539961bdfa907ae32a01147.tar.bz2 openembedded-core-1938a4435cd77494e539961bdfa907ae32a01147.zip |
bind: separate B and S
Fix B != S and separate them.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
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.10.2.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/bind/bind_9.10.2.bb b/meta/recipes-connectivity/bind/bind_9.10.2.bb index 539f63ea48..1dc15a9da7 100644 --- a/meta/recipes-connectivity/bind/bind_9.10.2.bb +++ b/meta/recipes-connectivity/bind/bind_9.10.2.bb @@ -31,7 +31,9 @@ EXTRA_OECONF = " ${ENABLE_IPV6} --with-randomdev=/dev/random --disable-threads \ --sysconfdir=${sysconfdir}/bind \ --with-openssl=${STAGING_LIBDIR}/.. \ " -inherit autotools-brokensep update-rc.d systemd useradd pkgconfig +inherit autotools update-rc.d systemd useradd pkgconfig + +PR = "r1" PACKAGECONFIG ?= "" PACKAGECONFIG[httpstats] = "--with-libxml2,--without-libxml2,libxml2" @@ -58,7 +60,7 @@ do_install_prepend() { # clean host path in isc-config.sh before the hardlink created # by "make install": # bind9-config -> isc-config.sh - sed -i -e "s,${STAGING_LIBDIR},${libdir}," ${S}/isc-config.sh + sed -i -e "s,${STAGING_LIBDIR},${libdir}," ${B}/isc-config.sh } do_install_append() { |