diff options
author | Yi Zhao <yi.zhao@windriver.com> | 2024-09-29 07:06:16 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-09-29 10:01:08 -0700 |
commit | 0a2b230d5c1f7897d6c643c282731880a9726ba3 (patch) | |
tree | 869fed57011a0f6b1d383bdcc27cd5158b7107ba /meta-filesystems | |
parent | 634a6a29f477d9f1ec2b07f356671b0a67afb9ad (diff) | |
download | meta-openembedded-0a2b230d5c1f7897d6c643c282731880a9726ba3.tar.gz |
e2tools: upgrade 0.1.0 -> 0.1.2
ChangeLog:
https://github.com/e2tools/e2tools/releases/tag/v0.1.2
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-filesystems')
-rw-r--r-- | meta-filesystems/recipes-utils/e2tools/e2tools_0.1.2.bb (renamed from meta-filesystems/recipes-utils/e2tools/e2tools_git.bb) | 5 | ||||
-rw-r--r-- | meta-filesystems/recipes-utils/e2tools/files/0001-Disable-portability-warning-as-error.patch | 34 |
2 files changed, 1 insertions, 38 deletions
diff --git a/meta-filesystems/recipes-utils/e2tools/e2tools_git.bb b/meta-filesystems/recipes-utils/e2tools/e2tools_0.1.2.bb index 459c7058e..d7e654bab 100644 --- a/meta-filesystems/recipes-utils/e2tools/e2tools_git.bb +++ b/meta-filesystems/recipes-utils/e2tools/e2tools_0.1.2.bb | |||
@@ -11,15 +11,12 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | |||
11 | 11 | ||
12 | DEPENDS += "coreutils e2fsprogs" | 12 | DEPENDS += "coreutils e2fsprogs" |
13 | 13 | ||
14 | PV = "0.1.0+git" | ||
15 | |||
16 | SRC_URI = " \ | 14 | SRC_URI = " \ |
17 | git://github.com/e2tools/e2tools;protocol=https;branch=master \ | 15 | git://github.com/e2tools/e2tools;protocol=https;branch=master \ |
18 | file://0001-Disable-portability-warning-as-error.patch \ | ||
19 | file://run-ptest \ | 16 | file://run-ptest \ |
20 | " | 17 | " |
21 | 18 | ||
22 | SRCREV = "fd092754a6b65c3a769f74f888668c066f09c36d" | 19 | SRCREV = "46da6c398e70635a296245851fcedbc56c35e824" |
23 | 20 | ||
24 | S = "${WORKDIR}/git" | 21 | S = "${WORKDIR}/git" |
25 | 22 | ||
diff --git a/meta-filesystems/recipes-utils/e2tools/files/0001-Disable-portability-warning-as-error.patch b/meta-filesystems/recipes-utils/e2tools/files/0001-Disable-portability-warning-as-error.patch deleted file mode 100644 index dec793f37..000000000 --- a/meta-filesystems/recipes-utils/e2tools/files/0001-Disable-portability-warning-as-error.patch +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | From e0aaedea30483bf5b9bb085e12fff79144fa1174 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Thu, 29 Aug 2024 11:12:57 -0700 | ||
4 | Subject: [PATCH] Disable portability warning as error | ||
5 | |||
6 | With latest automake 1.17 its warning about escape hash | ||
7 | mark [1] and since configure.ac uses -werror to call automake | ||
8 | this becomes an error and reconfigure fails. | ||
9 | |||
10 | escape hash mark is non-portable as discussed here [2] | ||
11 | |||
12 | Fow now let it be a warning, it should be fixed in a portable way | ||
13 | |||
14 | [1] https://debbugs.gnu.org/cgi/bugreport.cgi?bug=7610 | ||
15 | [2] https://lists.gnu.org/archive/html/automake/2011-08/msg00023.html | ||
16 | |||
17 | Upstream-Status: Submitted [https://github.com/e2tools/e2tools/pull/31] | ||
18 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
19 | --- | ||
20 | configure.ac | 1 + | ||
21 | 1 file changed, 1 insertion(+) | ||
22 | |||
23 | diff --git a/configure.ac b/configure.ac | ||
24 | index dd32c4d..9f37591 100644 | ||
25 | --- a/configure.ac | ||
26 | +++ b/configure.ac | ||
27 | @@ -14,6 +14,7 @@ AC_CONFIG_MACRO_DIR([m4]) | ||
28 | AM_INIT_AUTOMAKE([ | ||
29 | -Wall | ||
30 | -Werror | ||
31 | +-Wno-portability | ||
32 | 1.9.6 | ||
33 | foreign | ||
34 | subdir-objects | ||