Merge bk://openembedded@openembedded.bkbits.net/packages
authorPhil Blundell <philb@gnu.org>
Thu, 5 Aug 2004 14:17:01 +0000 (14:17 +0000)
committerPhil Blundell <philb@gnu.org>
Thu, 5 Aug 2004 14:17:01 +0000 (14:17 +0000)
into stealth.(none):/home/pb/oe/oe-packages

2004/08/05 15:16:35+01:00 (none)!pb
if in offline root mode, quietly skip ldconfig rather than exiting

BKrev: 4112415dW5HGfst-sz0EN23BIVP2zQ

classes/package.oeclass

index 917ed2e..589f99f 100644 (file)
@@ -265,9 +265,7 @@ python populate_packages () {
 }
 
 ldconfig_postinst_fragment() {
-if [ x"$D" != "x" ]; then
-       exit 1
-else
+if [ x"$D" = "x" ]; then
        ldconfig
 fi
 }