summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/package.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index e6856cdf87..ec7de2c36e 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -1141,7 +1141,7 @@ emit_pkgdata[dirs] = "${PKGDESTWORK}/runtime"
1141 1141
1142ldconfig_postinst_fragment() { 1142ldconfig_postinst_fragment() {
1143if [ x"$D" = "x" ]; then 1143if [ x"$D" = "x" ]; then
1144 [ -x /sbin/ldconfig ] && /sbin/ldconfig 1144 if [ -x /sbin/ldconfig ]; then /sbin/ldconfig ; fi
1145fi 1145fi
1146} 1146}
1147 1147
@@ -1251,7 +1251,7 @@ python package_do_shlibs() {
1251 return 1251 return
1252 1252
1253 lib_re = re.compile("^.*\.so") 1253 lib_re = re.compile("^.*\.so")
1254 libdir_re = re.compile(".*/lib$") 1254 libdir_re = re.compile(".*/%s$" % d.getVar('baselib', True))
1255 1255
1256 packages = d.getVar('PACKAGES', True) 1256 packages = d.getVar('PACKAGES', True)
1257 targetos = d.getVar('TARGET_OS', True) 1257 targetos = d.getVar('TARGET_OS', True)