diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-21 14:18:05 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-21 14:20:18 +0100 |
commit | 3c101af5e33b21f53171c66de0c2c3e797d95247 (patch) | |
tree | e870542ab945a89f1cb3bbdcf87785df7f038420 /meta/conf | |
parent | 30b7781650e3ff092d04889beab2e87eaff29cdb (diff) | |
download | poky-3c101af5e33b21f53171c66de0c2c3e797d95247.tar.gz |
bitbake.conf/gcc-common.inc: Fix STAMPCLEAN expression
The globs used for STAMPCLEAN were too greedy matching gcc-cross-initial
stamps for gcc-cross for example. This patch resolves that problem making
the assumption that PV starts with something numeric. This assumption
should hold in most cases and has a better failure case that the current
situation.
(From OE-Core rev: d7fbc70b6c6ac629d2a23ac16ab45461f88b4b26)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index b3d3f52609..9b41749e2d 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -333,7 +333,7 @@ BZRDIR = "${CO_DIR}/bzr" | |||
333 | HGDIR = "${CO_DIR}/hg" | 333 | HGDIR = "${CO_DIR}/hg" |
334 | 334 | ||
335 | STAMP = "${TMPDIR}/stamps/${MULTIMACH_TARGET_SYS}/${PN}-${EXTENDPE}${PV}-${PR}" | 335 | STAMP = "${TMPDIR}/stamps/${MULTIMACH_TARGET_SYS}/${PN}-${EXTENDPE}${PV}-${PR}" |
336 | STAMPCLEAN = "${TMPDIR}/stamps/${MULTIMACH_TARGET_SYS}/${PN}-*-*" | 336 | STAMPCLEAN = "${TMPDIR}/stamps/${MULTIMACH_TARGET_SYS}/${PN}-[0-9]*-*" |
337 | WORKDIR = "${TMPDIR}/work/${MULTIMACH_TARGET_SYS}/${PF}" | 337 | WORKDIR = "${TMPDIR}/work/${MULTIMACH_TARGET_SYS}/${PF}" |
338 | T = "${WORKDIR}/temp" | 338 | T = "${WORKDIR}/temp" |
339 | D = "${WORKDIR}/image" | 339 | D = "${WORKDIR}/image" |