git.openpandora.org
/
openembedded.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c4de6d7
)
Merge bk://openembedded@openembedded.bkbits.net/packages
author
Phil Blundell
<philb@gnu.org>
Thu, 5 Aug 2004 14:17:01 +0000
(14:17 +0000)
committer
Phil 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
patch
|
blob
|
history
diff --git
a/classes/package.oeclass
b/classes/package.oeclass
index
917ed2e
..
589f99f
100644
(file)
--- a/
classes/package.oeclass
+++ b/
classes/package.oeclass
@@
-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
}