diff options
author | Kristoffer Ericson <kristoffer_e1@hotmail.com> | 2006-09-03 22:45:25 +0000 |
---|---|---|
committer | Kristoffer Ericson <kristoffer_e1@hotmail.com> | 2006-09-03 22:45:25 +0000 |
commit | 260069845a847938bf587583a9d36ec18f533c50 (patch) | |
tree | 84324e4c5d5ea1148c2c293e8a6547d8d7403179 /packages/libnss-mdns/libnss-mdns_0.8.bb | |
parent | 88ddfa8fba208fc9c874480f9a8889bd65225e43 (diff) | |
parent | d5920d9869e2c5d3ef23242537b09664b2144bfc (diff) |
merge of 43de53f09816b4e1e243912e5958a66424c605f8
and ae090523c163ff0d1e234b0d89d1450a2466b4b4
Diffstat (limited to 'packages/libnss-mdns/libnss-mdns_0.8.bb')
-rw-r--r-- | packages/libnss-mdns/libnss-mdns_0.8.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/libnss-mdns/libnss-mdns_0.8.bb b/packages/libnss-mdns/libnss-mdns_0.8.bb index 475297cd63..a4a9cd00d1 100644 --- a/packages/libnss-mdns/libnss-mdns_0.8.bb +++ b/packages/libnss-mdns/libnss-mdns_0.8.bb @@ -5,7 +5,7 @@ SECTION = "libs" PRIORITY = "optional" RRECOMMENDS_${PN} = "zeroconf" -PR = "r0" +PR = "r1" EXTRA_OECONF = "--libdir=/lib" S = "${WORKDIR}/nss-mdns-${PV}" @@ -15,6 +15,10 @@ SRC_URI = "http://0pointer.de/lennart/projects/nss-mdns/nss-mdns-${PV}.tar.gz" inherit autotools pkg_postinst () { + # can't do this offline + if [ "x$D" != "x" ]; then + exit 1 + fi cat /etc/nsswitch.conf | grep "hosts:\s*files dns$" > /dev/null && { cat /etc/nsswitch.conf | sed 's/\(hosts:\s*files \)dns/\1mdns4_minimal [NOTFOUND=return] dns mdns4/' > /tmp/nsswitch.conf mv /tmp/nsswitch.conf /etc/nsswitch.conf |