diff options
| author | Markus Volk <f_l_k@t-online.de> | 2026-06-11 10:27:07 +0200 |
|---|---|---|
| committer | Khem Raj <khem.raj@oss.qualcomm.com> | 2026-06-12 07:29:03 -0700 |
| commit | 6786892d3779821f30fa628d95184cf49c9cb38a (patch) | |
| tree | f346c1363c6cad33d7af9c1e0ed4682c1085fd31 /meta-filesystems | |
| parent | 34a9fb4e4cc3de13780d800d7fffe9b2e592e2f2 (diff) | |
| download | meta-openembedded-6786892d3779821f30fa628d95184cf49c9cb38a.tar.gz | |
exfatprogs: fix build after update
After current update I see:
| configure.ac:51: error: undefined or overquoted macro: AC_DEFINE
| If this token and others are legitimate, please use m4_pattern_allow.
| See the Autoconf documentation.
inherit pkgconfig to resolve dependency issues leading to this
This uncovered a missing dependency on blkid:
| checking pkg-config is at least version 0.9.0... yes
| checking for blkid >= 2.20... no
| checking for blkid... no
| configure: error: Package requirements (blkid) were not met:
|
| Package 'blkid' not found
|
| Consider adjusting the PKG_CONFIG_PATH environment variable if you
| installed software in a non-standard prefix.
|
| Alternatively, you may set the environment variables EXT2_BLKID_CFLAGS
| and EXT2_BLKID_LIBS to avoid the need to call pkg-config.
Add util-linux dependency
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to 'meta-filesystems')
| -rw-r--r-- | meta-filesystems/recipes-utils/exfatprogs/exfatprogs_1.4.1.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-filesystems/recipes-utils/exfatprogs/exfatprogs_1.4.1.bb b/meta-filesystems/recipes-utils/exfatprogs/exfatprogs_1.4.1.bb index 82d2e987ef..89603a8c5b 100644 --- a/meta-filesystems/recipes-utils/exfatprogs/exfatprogs_1.4.1.bb +++ b/meta-filesystems/recipes-utils/exfatprogs/exfatprogs_1.4.1.bb | |||
| @@ -18,7 +18,9 @@ SRC_URI[sha256sum] = "85c133e8802cbc1191bff2477a67b376192dfb9f94bb254c05dbae79fd | |||
| 18 | UPSTREAM_CHECK_URI = "https://github.com/${BPN}/${BPN}/releases" | 18 | UPSTREAM_CHECK_URI = "https://github.com/${BPN}/${BPN}/releases" |
| 19 | UPSTREAM_CHECK_REGEX = "${BPN}-(?P<pver>\d+(\.\d+)+)" | 19 | UPSTREAM_CHECK_REGEX = "${BPN}-(?P<pver>\d+(\.\d+)+)" |
| 20 | 20 | ||
| 21 | inherit autotools ptest | 21 | inherit autotools ptest pkgconfig |
| 22 | |||
| 23 | DEPENDS += "util-linux" | ||
| 22 | 24 | ||
| 23 | RPROVIDES:${PN} = "exfat-utils" | 25 | RPROVIDES:${PN} = "exfat-utils" |
| 24 | RCONFLICTS:${PN} = "exfat-utils" | 26 | RCONFLICTS:${PN} = "exfat-utils" |
