mirror of
https://git.freebsd.org/ports.git
synced 2025-05-12 23:31:50 -04:00
comms/grig, deskutils/xpad, games/7kaa: Fix problem between autopoint (gettext) and aclocal (automake). First autopoint installs gettext m4 files in WRKSRC/m4 for the version of gettext requested in configure.ac. And then aclocal should use those files. These ports were either missing an "-I m4" flag so aclocal didn't see the autopoint m4 files but used the ones from LOCALBASE/share/aclocal, which are the wrong version, or they used the --install flag that makes aclocal copy files from LOCALBASE/share/aclocal overwriting the autopoint m4 files. PR: 283536 Exp-run by: antoine
9 lines
268 B
Text
9 lines
268 B
Text
--- Makefile.am.orig 2023-01-24 21:13:11 UTC
|
|
+++ Makefile.am
|
|
@@ -8,5 +8,4 @@ EXTRA_DIST = \
|
|
win32/Makefile \
|
|
win32/icons/grig.ico
|
|
|
|
-# Install any third party macros into our tree for distribution
|
|
-ACLOCAL_AMFLAGS = -I m4 --install
|
|
+ACLOCAL_AMFLAGS = -I m4
|