diff options
author | raveit65 <[email protected]> | 2019-09-03 10:24:42 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-09-03 21:21:09 +0200 |
commit | c917182775acebe8d653c692b9f2b26ca2b5e831 (patch) | |
tree | 8d6c2549470ba1d0f77be21e617ebc8cb45b78e9 | |
parent | 0f702755173e57a6b5d1b6d8e5d2abdc993e2cf0 (diff) | |
download | mate-backgrounds-c917182775acebe8d653c692b9f2b26ca2b5e831.tar.bz2 mate-backgrounds-c917182775acebe8d653c692b9f2b26ca2b5e831.tar.xz |
Fix the error if have a newer version of gettext.
error: gettext infrastructure mismatch: using a Makefile.in.in
from gettext version 0.19 but the autoconf macros are from gettext
version 0.20
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 57559e3..a9600c5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,7 @@ SUBDIRS = po abstract desktop nature +ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} + dist-hook: @if test -d "$(srcdir)/.git"; \ then \ |