From: Ajay M Date: Wed, 19 Aug 2015 06:49:46 +0000 (+0530) Subject: parted: set VERSION number same as recipe's version X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~29316 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6d380d9d2e7f4a2e8c30da5c79086ee0391bfad5;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git parted: set VERSION number same as recipe's version There is a parameter VERSION in workdir Makefile which tells the version number of parted. While running ptest for parted we are getting failure because of VERSION mismatch --snip-- root@qemux86:/usr/lib/parted/ptest# ./run-ptest make: Entering directory '/usr/lib/parted/ptest/tests' make[1]: Entering directory '/usr/lib/parted/ptest/tests' help-version.sh: failed test: --version-$VERSION mismatch FAIL: help-version.sh --CUT-- [YOCTO #8172] Signed-off-by: Ajay M Signed-off-by: Ross Burton --- diff --git a/meta/recipes-extended/parted/parted_3.2.bb b/meta/recipes-extended/parted/parted_3.2.bb index 5d34749b010..ff8ae097cc3 100644 --- a/meta/recipes-extended/parted/parted_3.2.bb +++ b/meta/recipes-extended/parted/parted_3.2.bb @@ -36,6 +36,7 @@ do_install_ptest() { cp ${S}/build-aux/test-driver $t/build-aux/ cp -r ${S}/tests $t cp ${WORKDIR}/Makefile $t/tests/ + sed -i "s|^VERSION.*|VERSION = ${PV}|g" $t/tests/Makefile for i in print-align print-max dup-clobber duplicate fs-resize; \ do cp ${B}/tests/.libs/$i $t/tests/; \ done