diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2007-09-01 17:07:03 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2007-09-01 17:07:03 +0000 |
commit | c2ac91ada421a7af725524bb42024249d82c64a5 (patch) | |
tree | a54b387776c59f7e3dfff0f412d95e965c83c89d | |
parent | 344ad5e784560c0e88bc8c73ee6fcc2d96e1f56d (diff) |
native.bbclass: PACKAGE_DEPENDS no longer need be unset, add extra options to PKG_CONFIG_PATH if EXTRA_NATIVE_PKGCONFIG_PATH is set (from poky)
-rw-r--r-- | classes/native.bbclass | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/classes/native.bbclass b/classes/native.bbclass index 16026f53c9..104d5a49da 100644 --- a/classes/native.bbclass +++ b/classes/native.bbclass @@ -11,10 +11,6 @@ PACKAGE_ARCH = "${BUILD_ARCH}" # RPROVIDES becomes unnecessary. RPROVIDES = "${PN}" -# Break the circular dependency as a result of DEPENDS -# in package.bbclass -PACKAGE_DEPENDS = "" - TARGET_ARCH = "${BUILD_ARCH}" TARGET_OS = "${BUILD_OS}" TARGET_VENDOR = "${BUILD_VENDOR}" @@ -95,3 +91,5 @@ do_stage () { do_install () { true } + +PKG_CONFIG_PATH .= "${EXTRA_NATIVE_PKGCONFIG_PATH}" |