From: Bruno Haible Date: Mon, 3 Feb 2025 23:50:06 +0000 (+0100) Subject: Update after gnulib changed. X-Git-Tag: v0.24~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0aefc343e9f940c3034fd184e8570fec40ca4834;p=thirdparty%2Fgettext.git Update after gnulib changed. * gettext-tools/libgettextpo/Makefile.am (config.h): Remove leading part of the elements of $(libgnu_la_LIBADD). --- diff --git a/gettext-tools/libgettextpo/Makefile.am b/gettext-tools/libgettextpo/Makefile.am index 34a930e28..f6e04f19b 100644 --- a/gettext-tools/libgettextpo/Makefile.am +++ b/gettext-tools/libgettextpo/Makefile.am @@ -178,7 +178,7 @@ config.h: $(BUILT_SOURCES) for f in $(libgettextpo_la_AUXSOURCES) $(libgnu_la_SOURCES) $(libgnu_la_LIBADD); do \ case $$f in \ *.c | *.$(OBJEXT) | *.lo ) \ - sf=`echo "$$f" | sed -e 's,\\.[^.]*$$,,'`.c; \ + sf=`echo "$$f" | sed -e 's,^libgnu_la-,,' -e 's,\\.[^.]*$$,,'`.c; \ test -f $$sf || sf=$(srcdir)/$$sf; \ of=`echo "$$f" | sed -e 's,^.*/,,' -e 's,\\.[^.]*$$,,'`.$(OBJEXT); \ $(COMPILE) $(DEFS) $(GL_CFLAG_INHIBIT_WARNINGS) -c $$sf || { rm -f config.h; exit 1; }; \