diff options
author | Phil Blundell <pb@pbcl.net> | 2011-06-15 15:26:06 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-16 22:14:06 +0100 |
commit | dd91e6e77fbb57f052552dbc943c0f861550b342 (patch) | |
tree | e02ad77089aa67a968cd8b4d4600a0805d0181c3 /meta | |
parent | d5b82a2466aa3e26b18f66ba14d416f0b452e589 (diff) | |
download | poky-dd91e6e77fbb57f052552dbc943c0f861550b342.tar.gz |
bind: adjust hardcoded install path references
Fixes do_install() on micro, which otherwise fails for obvious reasons.
(From OE-Core rev: 2947f40510a8756895ec4edda2d07c1f915baa45)
Signed-off-by: Phil Blundell <philb@gnu.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-connectivity/bind/bind_9.7.2-P3.bb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/recipes-connectivity/bind/bind_9.7.2-P3.bb b/meta/recipes-connectivity/bind/bind_9.7.2-P3.bb index 4094aeb6b4..e3089bbece 100644 --- a/meta/recipes-connectivity/bind/bind_9.7.2-P3.bb +++ b/meta/recipes-connectivity/bind/bind_9.7.2-P3.bb | |||
@@ -35,11 +35,11 @@ FILES_${PN}-utils = "${bindir}/host ${bindir}/dig ${bindir}/nslookup" | |||
35 | FILES_${PN}-dev += "${bindir}/isc-config.h" | 35 | FILES_${PN}-dev += "${bindir}/isc-config.h" |
36 | 36 | ||
37 | do_install_append() { | 37 | do_install_append() { |
38 | rm "${D}/usr/bin/nslookup" | 38 | rm "${D}${bindir}/nslookup" |
39 | install -d "${D}/etc/bind" | 39 | install -d "${D}${sysconfdir}/bind" |
40 | install -d "${D}/etc/init.d" | 40 | install -d "${D}${sysconfdir}/init.d" |
41 | install -m 644 ${S}/conf/* "${D}/etc/bind" | 41 | install -m 644 ${S}/conf/* "${D}${sysconfdir}/bind/" |
42 | install -m 755 "${S}/init.d" "${D}/etc/init.d/bind" | 42 | install -m 755 "${S}/init.d" "${D}${sysconfdir}/init.d/bind" |
43 | } | 43 | } |
44 | 44 | ||
45 | CONFFILES_${PN} = " \ | 45 | CONFFILES_${PN} = " \ |