diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2012-02-23 16:50:25 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-23 23:53:02 +0000 |
commit | 30b709c50ce41671dccb897a1b61bc737f7b0424 (patch) | |
tree | a1b12a8d6b5aa0bd130db990a62ee8b8aef1effb | |
parent | 331540ca8b6e6fe33b7d892eeda8bab482100f79 (diff) | |
download | poky-30b709c50ce41671dccb897a1b61bc737f7b0424.tar.gz |
sstate.bbclass: add *_config to SSTATE_SCAN_FILES
* e.g. mysql5 has mysql_config not mysql-config
(From OE-Core rev: aebdffc93ba8446bbd4e20263f0f75d4d4460c47)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/sstate.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index d4f95c1d9f..ee9bf052ae 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
@@ -10,7 +10,7 @@ SSTATE_PKGSPEC = "sstate-${PN}-${PACKAGE_ARCH}${TARGET_VENDOR}-${TARGET_OS}-$ | |||
10 | SSTATE_PKGNAME = "${SSTATE_PKGSPEC}${BB_TASKHASH}" | 10 | SSTATE_PKGNAME = "${SSTATE_PKGSPEC}${BB_TASKHASH}" |
11 | SSTATE_PKG = "${SSTATE_DIR}/${SSTATE_PKGNAME}" | 11 | SSTATE_PKG = "${SSTATE_DIR}/${SSTATE_PKGNAME}" |
12 | 12 | ||
13 | SSTATE_SCAN_FILES ?= "*.la *-config" | 13 | SSTATE_SCAN_FILES ?= "*.la *-config *_config" |
14 | SSTATE_SCAN_CMD ?= 'find ${SSTATE_BUILDDIR} \( -name "${@"\" -o -name \"".join(d.getVar("SSTATE_SCAN_FILES", True).split())}" \) -type f' | 14 | SSTATE_SCAN_CMD ?= 'find ${SSTATE_BUILDDIR} \( -name "${@"\" -o -name \"".join(d.getVar("SSTATE_SCAN_FILES", True).split())}" \) -type f' |
15 | 15 | ||
16 | BB_HASHFILENAME = "${SSTATE_PKGNAME}" | 16 | BB_HASHFILENAME = "${SSTATE_PKGNAME}" |