From a47c3a26f34916973fc99882d09e60285ab5d2c0 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sun, 22 Mar 2026 10:42:05 -0700 Subject: [PATCH] gnulib: Copy hidden files to staging area as well newer gnulib-tool wrappers try to run a sibling Python launcher file, .gnulib-tool.py, when Python 3 is available. In current gnulib, that file is a real part of the tree, and gnulib-tool will exec "$prog.py" in that mode Signed-off-by: Khem Raj --- meta-oe/recipes-support/gnulib/gnulib_202601.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-oe/recipes-support/gnulib/gnulib_202601.bb b/meta-oe/recipes-support/gnulib/gnulib_202601.bb index d3ebdca8dd..763be6c11a 100644 --- a/meta-oe/recipes-support/gnulib/gnulib_202601.bb +++ b/meta-oe/recipes-support/gnulib/gnulib_202601.bb @@ -20,6 +20,7 @@ SRC_URI = "git://git.savannah.gnu.org/git/gnulib.git;branch=stable-${PV};protoco do_install () { install -d ${D}/${datadir}/gnulib cp --no-preserve=ownership --recursive ${S}/* ${D}/${datadir}/gnulib/ + cp --no-preserve=ownership --recursive ${S}/.gnulib-tool.py ${D}/${datadir}/gnulib/ cp --no-preserve=ownership --recursive ${S}/.git ${D}/${datadir}/gnulib/ }