[meta-oe][PATCH] simple-mtpfs: add dependency on autoconf-archive
Martin Jansa
This version fails to build here with:
| ../git/configure: line 3778: syntax error near unexpected token `noext' | ../git/configure: line 3778: `AX_CXX_COMPILE_STDCXX_17(noext)' switching back to older version builds fine. AX_CXX_COMPILE_STDCXX_17 was introduced in https://github.com/phatina/simple-mtpfs/commit/19e7bb9b608b0c0dce2ee6f56fac75901bc69529#diff-49473dca262eeab3b4a43002adb08b4db31020d190caaad1594b47f1d5daa810 Adding autoconf-archive into the DEPENDS fixes the issue. Signed-off-by: Martin Jansa <Martin.Jansa@...> --- .../recipes-filesystems/simple-mtpfs/simple-mtpfs_0.4.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-filesystems/recipes-filesystems/simple-mtpfs/simple-mtpfs_0.4.0.bb b/meta-filesystems/recipes-filesystems/simple-mtpfs/simple-mtpfs_0.4.0.bb index dfb7485596..2335771319 100644 --- a/meta-filesystems/recipes-filesystems/simple-mtpfs/simple-mtpfs_0.4.0.bb +++ b/meta-filesystems/recipes-filesystems/simple-mtpfs/simple-mtpfs_0.4.0.bb @@ -4,7 +4,7 @@ BUGTRACKER = "19e7bb9b608b0c0dce2ee6f56fac75901bc69529" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=75859989545e37968a99b631ef42722e" -DEPENDS = "fuse libmtp" +DEPENDS = "fuse libmtp autoconf-archive" inherit autotools pkgconfig -- 2.32.0 |
|