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:
b222ee6
)
package bbclass: only run ldconfig when there's a ld.so.conf present
author
Koen Kooi
<koen@openembedded.org>
Sat, 25 Oct 2008 16:58:00 +0000
(18:58 +0200)
committer
Koen Kooi
<koen@openembedded.org>
Sat, 25 Oct 2008 16:58:00 +0000
(18:58 +0200)
classes/package.bbclass
patch
|
blob
|
history
diff --git
a/classes/package.bbclass
b/classes/package.bbclass
index
fd72a6d
..
1dc26fd
100644
(file)
--- a/
classes/package.bbclass
+++ b/
classes/package.bbclass
@@
-558,7
+558,7
@@
emit_pkgdata[dirs] = "${PKGDATA_DIR}/runtime"
ldconfig_postinst_fragment() {
if [ x"$D" = "x" ]; then
- [ -x /sbin/ldconfig ] && /sbin/ldconfig
+ [ -x /sbin/ldconfig ] &&
[ -e /etc/ld.so.conf ] &&
/sbin/ldconfig
fi
}