libnss-mdns-0.8: fix the postinst script
authorPhilipp Zabel <philipp.zabel@gmail.com>
Fri, 1 Sep 2006 12:23:14 +0000 (12:23 +0000)
committerPhilipp Zabel <philipp.zabel@gmail.com>
Fri, 1 Sep 2006 12:23:14 +0000 (12:23 +0000)
packages/libnss-mdns/libnss-mdns_0.8.bb

index 475297c..a4a9cd0 100644 (file)
@@ -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