diff options
author | Paul Smith <psmith@gnu.org> | 2003-07-31 13:04:32 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2003-07-31 13:04:32 +0000 |
commit | db401d8e0af7fe6e3ca83afc502ed8ca0cae550e (patch) | |
tree | 4dd1bb31c64d729dfc1e4b30995b05b612c41cdd /Makefile.am | |
parent | e3986eea432878243eabefeb15f981f9e945b70c (diff) | |
download | gunmake-db401d8e0af7fe6e3ca83afc502ed8ca0cae550e.tar.gz |
Updated for autoconf 2.57, automake 1.7.6, and gettext 0.12.1.
Fixed problems with the dist target (adding missing files).
Workaround for a bug in gettext 0.12.1 po/Makefile.in.in where distclean
wasn't cleaning everything, which caused distcheck to fail.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 06d2df1..9e05683 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ # This is a -*-Makefile-*-, or close enough -AUTOMAKE_OPTIONS = 1.7.3 dist-bzip2 check-news ansi2knr +AUTOMAKE_OPTIONS = dist-bzip2 check-news ansi2knr ACLOCAL_AMFLAGS = -I config SUBDIRS = glob config po doc @@ -61,6 +61,13 @@ html: localedir = $(datadir)/locale +# We need this due to a bug in gettext 0.12.1 Makefile.in.in: without this I +# can't run distcheck because this file is created but not removed during +# distclean. + +distclean-local: + test "$(srcdir)" = . || rm -f po/stamp-po + # --------------- Local INSTALL Section # If necessary, change the gid of the app and turn on the setgid flag. |