diff options
author | Gyorgy Sarvari <skandigraun@gmail.com> | 2025-02-09 18:59:37 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-02-09 12:57:18 -0800 |
commit | ba8d9ff050cf7a29da80c125a8b300ec816f122d (patch) | |
tree | 8e927dd6041968249272a241b40b8e6741fd8af3 | |
parent | c87c5d5614bf5d5255e031abe32ea681968a6d75 (diff) | |
download | meta-openembedded-ba8d9ff050cf7a29da80c125a8b300ec816f122d.tar.gz |
gnome-commander: missing dependency for tests PACKAGECONFIG
If tests PACKAGECONFIG is enabled, do_configure errors out:
../gnome-commander-1.16.1/meson.build:179:8: ERROR: Dependency "gtest" not found, tried pkgconfig and system
Fix it by adding the missing dependency.
Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-gnome/recipes-gnome/gnome-commander/gnome-commander_1.16.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-gnome/recipes-gnome/gnome-commander/gnome-commander_1.16.1.bb b/meta-gnome/recipes-gnome/gnome-commander/gnome-commander_1.16.1.bb index bb36d59e56..d96371de3c 100644 --- a/meta-gnome/recipes-gnome/gnome-commander/gnome-commander_1.16.1.bb +++ b/meta-gnome/recipes-gnome/gnome-commander/gnome-commander_1.16.1.bb | |||
@@ -25,7 +25,7 @@ PACKAGECONFIG[taglib] = "-Dtaglib=enabled,-Dtaglib=disabled,taglib" | |||
25 | PACKAGECONFIG[libgsf] = "-Dlibgsf=enabled,-Dlibgsf=disabled,libgsf" | 25 | PACKAGECONFIG[libgsf] = "-Dlibgsf=enabled,-Dlibgsf=disabled,libgsf" |
26 | PACKAGECONFIG[poppler] = "-Dpoppler=enabled,-Dpoppler=disabled,poppler" | 26 | PACKAGECONFIG[poppler] = "-Dpoppler=enabled,-Dpoppler=disabled,poppler" |
27 | PACKAGECONFIG[samba] = "-Dsamba=enabled,-Dsamba=disabled,samba" | 27 | PACKAGECONFIG[samba] = "-Dsamba=enabled,-Dsamba=disabled,samba" |
28 | PACKAGECONFIG[tests] = "-Dtests=enabled,-Dtests=disabled," | 28 | PACKAGECONFIG[tests] = "-Dtests=enabled,-Dtests=disabled,googletest" |
29 | 29 | ||
30 | FILES:${PN} += "${datadir}/metainfo" | 30 | FILES:${PN} += "${datadir}/metainfo" |
31 | FILES:${PN}-dev += "${libdir}/${BPN}/lib*${SOLIBSDEV}" | 31 | FILES:${PN}-dev += "${libdir}/${BPN}/lib*${SOLIBSDEV}" |