]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
autopoint: use 'm4' as the fallback macro directory
authorDaiki Ueno <ueno@gnu.org>
Wed, 16 Oct 2013 07:34:48 +0000 (16:34 +0900)
committerDaiki Ueno <ueno@gnu.org>
Wed, 16 Oct 2013 07:34:48 +0000 (16:34 +0900)
gettext-tools/misc/ChangeLog
gettext-tools/misc/autopoint.in

index 88d140b58d090dd8fec1f75081ff7a85765a4bd0..6ac866378f7433be54c871a3d091724d976af3d1 100644 (file)
@@ -1,3 +1,10 @@
+2013-10-16  Daiki Ueno  <ueno@gnu.org>
+
+       * autopoint.in: Use 'm4' as the default macro directory if it is
+       not specified in configure.ac nor Makefile.am.
+       Reported by Michał Górny in
+       <http://savannah.gnu.org/bugs/?40278>.
+
 2013-09-24  Daiki Ueno  <ueno@gnu.org>
 
        * autopoint.in (func_trace): Discard stderr of autom4te.
index 72b268b35edc4edfedef89c7877f018671254d2d..d8c7d747a952f4c7a63781e6f3faf548f87bc015 100644 (file)
@@ -347,6 +347,10 @@ if test -z "$m4dir" && test -f Makefile.am; then
   done
 fi
 
+if test -z "$m4dir"; then
+  m4dir=m4
+fi
+
 # Check whether to omit the intl/ directory.
 omitintl=
 xargs=`func_trace AM_GNU_GETTEXT "$configure_in"`