diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2016-01-18 19:23:03 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-19 08:53:05 +0000 |
commit | 839fb1893546ad58a1f5475a9e852b81afb056d6 (patch) | |
tree | 70068ad4ae20481a33e18f322730ea29e4c48fe5 /meta/recipes-devtools/e2fsprogs | |
parent | b1236dccbfcd144a3875568f428a5fb60408d982 (diff) | |
download | poky-839fb1893546ad58a1f5475a9e852b81afb056d6.tar.gz |
e2fsprogs: fix PV
We had upgraded e2fsprogs from 1.42.9 to 1.43 (WIP), and used:
PV = "1.42+1.43-git${SRCPV}"
But:
$ dpkg --compare-versions 1.42+1.43 gt 1.42.9 && echo greater || echo less
less
It shows that 1.42+1.43 is less than 1.42.9, so this is a downgraded. Use
PV = "1.42.13+git${SRCPV}"
to fix the problem. 1.42.13 is the latest e2fsprogs 1.42 version.
(From OE-Core rev: aafe22fb5f2f58e1e7206a34f410e9cae0d3cfe3)
Signed-off-by: Robert Yang <liezhi.yang@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_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs_git.bb b/meta/recipes-devtools/e2fsprogs/e2fsprogs_git.bb index b1b793191d..60b28545ac 100644 --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs_git.bb +++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs_git.bb | |||
@@ -9,7 +9,7 @@ SRC_URI += "file://acinclude.m4 \ | |||
9 | " | 9 | " |
10 | 10 | ||
11 | SRCREV = "0f26747167cc9d82df849b0aad387bf824f04544" | 11 | SRCREV = "0f26747167cc9d82df849b0aad387bf824f04544" |
12 | PV = "1.42+1.43-git${SRCPV}" | 12 | PV = "1.42.13+git${SRCPV}" |
13 | 13 | ||
14 | EXTRA_OECONF += "--libdir=${base_libdir} --sbindir=${base_sbindir} \ | 14 | EXTRA_OECONF += "--libdir=${base_libdir} --sbindir=${base_sbindir} \ |
15 | --enable-elf-shlibs --disable-libuuid --disable-uuidd \ | 15 | --enable-elf-shlibs --disable-libuuid --disable-uuidd \ |