| Message ID | 20260722184939.495321-4-khem.raj@oss.qualcomm.com |
|---|---|
| State | New |
| Headers | show |
| Series | [meta-networking,1/5] ufw: make usrmerge setup.py sed idempotent | expand |
diff --git a/meta-oe/recipes-graphics/xorg-app/xterm_410.bb b/meta-oe/recipes-graphics/xorg-app/xterm_410.bb index d10fb999fe..e116eedad2 100644 --- a/meta-oe/recipes-graphics/xorg-app/xterm_410.bb +++ b/meta-oe/recipes-graphics/xorg-app/xterm_410.bb @@ -30,8 +30,8 @@ B = "${S}" CFLAGS += "-D_GNU_SOURCE" do_configure() { - gnu-configize --force - sed -e "s%/usr/contrib/X11R6%${STAGING_LIBDIR}%g" -i configure + gnu-configize --force ${S} + sed -e "s%/usr/contrib/X11R6%${STAGING_LIBDIR}%g" -i ${S}/configure oe_runconf }
xterm do_configure runs gnu-configize (to refresh config.sub/config.guess), newer versions of gnu-config needs to specify the directory for configure scripts Fixes a build error abort in do_configure: gnu-configize: error: 'configure.ac' is required Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com> --- meta-oe/recipes-graphics/xorg-app/xterm_410.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)