diff options
author | Changqing Li <changqing.li@windriver.com> | 2018-10-11 18:16:18 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-10-12 16:57:21 +0100 |
commit | 6ffcc26651a7c3318d558a57c7769687cdc28931 (patch) | |
tree | aca8ae9e2a04ef430766daf42038080ae6afa377 | |
parent | 514ec3123bede648e15c1382bf2491de4f597552 (diff) | |
download | poky-6ffcc26651a7c3318d558a57c7769687cdc28931.tar.gz |
e2fsprogs: fix test i_bitmaps failed
without diffutils, diff from busybox will be used, diff of
busybox cause diff result different with expect file under test.
The diff result generated by 2 /usr/bin/diff is different.
change to use diff under diffutils to fix it
(From OE-Core rev: 35baffb28a4598f385a6ab7765427db683146c1b)
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/e2fsprogs/e2fsprogs_1.44.3.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.44.3.bb b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.44.3.bb index 823d18bc3f..6c65e95dd8 100644 --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.44.3.bb +++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.44.3.bb | |||
@@ -112,7 +112,7 @@ ALTERNATIVE_LINK_NAME[mkfs.ext2] = "${base_sbindir}/mkfs.ext2" | |||
112 | ALTERNATIVE_${PN}-tune2fs = "tune2fs" | 112 | ALTERNATIVE_${PN}-tune2fs = "tune2fs" |
113 | ALTERNATIVE_LINK_NAME[tune2fs] = "${base_sbindir}/tune2fs" | 113 | ALTERNATIVE_LINK_NAME[tune2fs] = "${base_sbindir}/tune2fs" |
114 | 114 | ||
115 | RDEPENDS_${PN}-ptest += "${PN} ${PN}-tune2fs coreutils procps bash bzip2" | 115 | RDEPENDS_${PN}-ptest += "${PN} ${PN}-tune2fs coreutils procps bash bzip2 diffutils" |
116 | 116 | ||
117 | do_compile_ptest() { | 117 | do_compile_ptest() { |
118 | oe_runmake -C ${B}/tests | 118 | oe_runmake -C ${B}/tests |