From: Tom Tromey Date: Sun, 17 Mar 2002 23:17:58 +0000 (+0000) Subject: * m4/init.m4 (AUTOMAKE, ACLOCAL): Removed extra quotes. X-Git-Tag: branchpoint-1-6~28 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=fc74f5b8f98c1f04361de9eb1195ef1e5bc06ba2;p=automake.git * m4/init.m4 (AUTOMAKE, ACLOCAL): Removed extra quotes. Fixes PR automake/304. --- diff --git a/ChangeLog b/ChangeLog index 4deb7b24..85833aad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-03-17 Tom Tromey + + * m4/init.m4 (AUTOMAKE, ACLOCAL): Removed extra quotes. + Fixes PR automake/304. + 2002-03-17 Alexandre Duret-Lutz * tests/dirforbid.test: Workaround for NetBSD sh bug. diff --git a/m4/init.m4 b/m4/init.m4 index e07b296e..c435f4e6 100644 --- a/m4/init.m4 +++ b/m4/init.m4 @@ -73,9 +73,9 @@ _AM_IF_OPTION([no-define],, # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl -AM_MISSING_PROG(ACLOCAL, "aclocal-${am__api_version}") +AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) AM_MISSING_PROG(AUTOCONF, autoconf) -AM_MISSING_PROG(AUTOMAKE, "automake-${am__api_version}") +AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) AM_MISSING_PROG(AMTAR, tar)