From 3c101af5e33b21f53171c66de0c2c3e797d95247 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 21 Sep 2012 14:18:05 +0100 Subject: 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 --- meta/conf/bitbake.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/conf') 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" HGDIR = "${CO_DIR}/hg" STAMP = "${TMPDIR}/stamps/${MULTIMACH_TARGET_SYS}/${PN}-${EXTENDPE}${PV}-${PR}" -STAMPCLEAN = "${TMPDIR}/stamps/${MULTIMACH_TARGET_SYS}/${PN}-*-*" +STAMPCLEAN = "${TMPDIR}/stamps/${MULTIMACH_TARGET_SYS}/${PN}-[0-9]*-*" WORKDIR = "${TMPDIR}/work/${MULTIMACH_TARGET_SYS}/${PF}" T = "${WORKDIR}/temp" D = "${WORKDIR}/image" -- cgit v1.2.3-54-g00ecf