diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2011-08-03 10:28:48 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-03 17:51:58 +0100 |
commit | a01e3120f5772f9d3af1cb40573442589514dcd5 (patch) | |
tree | 13bb73adfa2596375eff35a5e1f471dbe8dcf3ff /meta | |
parent | 8c21a0d66c3b68596327a53ed9ab63c0cca9e782 (diff) | |
download | poky-a01e3120f5772f9d3af1cb40573442589514dcd5.tar.gz |
libnss-mdns: dont use hard coded /lib path
As libdir might not be /lib (could be /lib64) use ${base_libdir} instead of
hard coded "/lib" in configure options set in EXTRA_OECONF.
(From OE-Core rev: 130d16d18e8bf7cfe87a1fa128f182f7fe728708)
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-connectivity/libnss-mdns/libnss-mdns_0.10.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/libnss-mdns/libnss-mdns_0.10.bb b/meta/recipes-connectivity/libnss-mdns/libnss-mdns_0.10.bb index f5df005d30..5f614f86a2 100644 --- a/meta/recipes-connectivity/libnss-mdns/libnss-mdns_0.10.bb +++ b/meta/recipes-connectivity/libnss-mdns/libnss-mdns_0.10.bb | |||
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=2d5025d4aa3495befef8f17206a5b0a1" | |||
7 | 7 | ||
8 | DEPENDS = "avahi" | 8 | DEPENDS = "avahi" |
9 | RDEPENDS_${PN} = "avahi-daemon" | 9 | RDEPENDS_${PN} = "avahi-daemon" |
10 | PR = "r2" | 10 | PR = "r3" |
11 | 11 | ||
12 | SRC_URI = "http://0pointer.de/lennart/projects/nss-mdns/nss-mdns-${PV}.tar.gz" | 12 | SRC_URI = "http://0pointer.de/lennart/projects/nss-mdns/nss-mdns-${PV}.tar.gz" |
13 | 13 | ||
@@ -21,7 +21,7 @@ inherit autotools | |||
21 | LEAD_SONAME = "libnss_mdns.so" | 21 | LEAD_SONAME = "libnss_mdns.so" |
22 | DEBIANNAME_${PN} = "libnss-mdns" | 22 | DEBIANNAME_${PN} = "libnss-mdns" |
23 | 23 | ||
24 | EXTRA_OECONF = "--libdir=/lib --disable-lynx --enable-avahi" | 24 | EXTRA_OECONF = "--libdir=${base_libdir} --disable-lynx --enable-avahi" |
25 | 25 | ||
26 | # TODO: pattern based configuration update | 26 | # TODO: pattern based configuration update |
27 | pkg_postinst_${PN} () { | 27 | pkg_postinst_${PN} () { |