diff options
author | Juro Bystricky <juro.bystricky@intel.com> | 2017-10-25 16:00:26 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-08 22:23:45 +0000 |
commit | 65a3b7b7b6aa91153ac3bd78411665316f1b2cba (patch) | |
tree | 2a634413db3c4d69589f53ccd002445dfe0ad553 /meta | |
parent | 6b61126c386a0a7334cdf475d349b830c436ed82 (diff) | |
download | openembedded-core-65a3b7b7b6aa91153ac3bd78411665316f1b2cba.tar.gz openembedded-core-65a3b7b7b6aa91153ac3bd78411665316f1b2cba.tar.bz2 openembedded-core-65a3b7b7b6aa91153ac3bd78411665316f1b2cba.zip |
e2fsprogs-ptest: improve reproducibility
Remove several Makefiles containing build host references.
While at it, also remove some additional files not needed for
testing.
Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.5.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.5.bb b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.5.bb index 7fba8eb0c4..00093cc20c 100644 --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.5.bb +++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.5.bb @@ -109,4 +109,9 @@ do_install_ptest() { cp -R --no-dereference --preserve=mode,links -v ${B}/tests ${D}${PTEST_PATH}/test cp -R --no-dereference --preserve=mode,links -v ${S}/tests/* ${D}${PTEST_PATH}/test sed -e 's!../e2fsck/e2fsck!e2fsck!g' -i ${D}${PTEST_PATH}/test/*/expect* + + # Remove various files + find "${D}${PTEST_PATH}" -type f \ + \( -name 'Makefile' -o -name 'Makefile.in' -o -name '*.o' -o -name '*.c' -o -name '*.h' \)\ + -exec rm -f {} + } |