diff options
author | Changqing Li <changqing.li@windriver.com> | 2018-10-12 10:21:12 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-10-12 16:57:21 +0100 |
commit | ba33809b8cbb9c089b87bd772d6572d2370507b5 (patch) | |
tree | 98f8d9fc228a79aace67037a395ecd4f45816610 /meta/recipes-devtools/e2fsprogs | |
parent | 50f41202cc9928e2a3c12ccbe36f4af6fc0aa8c6 (diff) | |
download | poky-ba33809b8cbb9c089b87bd772d6572d2370507b5.tar.gz |
e2fsprogs: fix test f_detect_junk print error msg
This test need to check config.h, so install it
to fix below err msg:
grep: ../lib/config.h: No such file or directory
./test/f_detect_junk/script: line 3: [: : integer expression expected
f_detect_junk: detect non-fs file data: ok
(From OE-Core rev: 53f2ad2ec54fd69d91c2445c4ae20585b836e2ea)
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/e2fsprogs')
-rw-r--r-- | meta/recipes-devtools/e2fsprogs/e2fsprogs_1.44.3.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.44.3.bb b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.44.3.bb index 6c65e95dd8..45c96742c7 100644 --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.44.3.bb +++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.44.3.bb | |||
@@ -129,4 +129,7 @@ do_install_ptest() { | |||
129 | find "${D}${PTEST_PATH}" -type f \ | 129 | find "${D}${PTEST_PATH}" -type f \ |
130 | \( -name 'Makefile' -o -name 'Makefile.in' -o -name '*.o' -o -name '*.c' -o -name '*.h' \)\ | 130 | \( -name 'Makefile' -o -name 'Makefile.in' -o -name '*.o' -o -name '*.c' -o -name '*.h' \)\ |
131 | -exec rm -f {} + | 131 | -exec rm -f {} + |
132 | |||
133 | install -d ${D}${PTEST_PATH}/lib | ||
134 | install -m 0644 ${B}/lib/config.h ${D}${PTEST_PATH}/lib/ | ||
132 | } | 135 | } |