summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/conf/bitbake.conf15
1 files changed, 9 insertions, 6 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 6f3d9bbd21..679fc9e6e2 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -259,14 +259,17 @@ RPROVIDES = ""
259MULTI_PROVIDER_WHITELIST = "virtual/libintl virtual/libintl-native virtual/nativesdk-libintl virtual/xserver virtual/update-alternatives-native virtual/update-alternatives" 259MULTI_PROVIDER_WHITELIST = "virtual/libintl virtual/libintl-native virtual/nativesdk-libintl virtual/xserver virtual/update-alternatives-native virtual/update-alternatives"
260 260
261SOLIBS = ".so.*" 261SOLIBS = ".so.*"
262SOLIBS_darwin = ".*.dylib" 262SOLIBS_darwin = ".dylib"
263SOLIBS_darwin8 = ".*.dylib" 263SOLIBS_darwin8 = ".dylib"
264SOLIBS_darwin9 = ".*.dylib" 264SOLIBS_darwin9 = ".dylib"
265 265
266SOLIBSDEV = ".so" 266SOLIBSDEV = ".so"
267SOLIBSDEV_darwin = ".dylib" 267# Due to the ordering of PACKAGES and the naming of the dev symlinks on darwin,
268SOLIBSDEV_darwin8 = ".dylib" 268# we can't make the symlinks end up in the -dev packages easily at this point. This hack
269SOLIBSDEV_darwin9 = ".dylib" 269# at least means builds aren't completely broken and symlinks don't take up much space.
270SOLIBSDEV_darwin = ".dylibbroken"
271SOLIBSDEV_darwin8 = ".dylibbroken"
272SOLIBSDEV_darwin9 = ".dylibbroken"
270 273
271PACKAGE_BEFORE_PN ?= "" 274PACKAGE_BEFORE_PN ?= ""
272PACKAGES = "${PN}-dbg ${PN}-staticdev ${PN}-dev ${PN}-doc ${PN}-locale ${PACKAGE_BEFORE_PN} ${PN}" 275PACKAGES = "${PN}-dbg ${PN}-staticdev ${PN}-dev ${PN}-doc ${PN}-locale ${PACKAGE_BEFORE_PN} ${PN}"