diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-08-10 16:50:32 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-08-10 16:52:38 +0200 |
commit | 8b4d5ce79c187282fa39b53e4127af1a2c141a0a (patch) | |
tree | f1841092e200aa10b2f92061ad0f8bbd12189024 /t | |
parent | 4100c2baf7640c77d31578edb5001545a25cbec1 (diff) | |
download | automake-8b4d5ce79c187282fa39b53e4127af1a2c141a0a.tar.gz |
[ng] tests: adjust weaknesses in the gettext tests
* t/gettext-macros.sh (m4/mk-dirp.m4): Define 'AM_PROG_MKDIR_P' rather
than 'AM_MKDIR_P', and in doing so, use 'AC_PROG_MKDIR_P' rather than
'AC_MKDIR_P'.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/gettext-macros.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/gettext-macros.sh b/t/gettext-macros.sh index 1d94dadfa..fad34a9f2 100755 --- a/t/gettext-macros.sh +++ b/t/gettext-macros.sh @@ -80,7 +80,7 @@ echo "export ACLOCAL_PATH" >> get.sh # Even recent versions of gettext used the now-obsolete 'AM_PROG_MKDIR_P' # m4 macro. So we need the following to avoid spurious errors. -echo 'AC_DEFUN([AM_MKDIR_P], [AC_MKDIR_P([$@])])' >> m4/mk-dirp.m4 +echo 'AC_DEFUN([AM_PROG_MKDIR_P], [AC_PROG_MKDIR_P([$@])])' >m4/am-mkdirp.m4 . ./get.sh |