From: Alexandre Duret-Lutz Date: Wed, 7 May 2003 20:59:08 +0000 (+0000) Subject: * m4/make.m4: Rename the doit target as am__doit, X-Git-Tag: Release-1-7b~186 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee029043e5da73cc5b68bee3c76d217f9b0c1722;p=thirdparty%2Fautomake.git * m4/make.m4: Rename the doit target as am__doit, and make it phony. Reported by Philip S Tellis. --- diff --git a/ChangeLog b/ChangeLog index 4bb5e8d6b..1c8c83338 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-05-07 Alexandre Duret-Lutz + + * m4/make.m4: Rename the doit target as am__doit, + and make it phony. + Reported by Philip S Tellis. + 2003-05-07 Alexandre Duret-Lutz * lib/am/configure.am (%MAKEFILE-IN%): Propagate automake's exit diff --git a/THANKS b/THANKS index 4b92c8300..43987c2a1 100644 --- a/THANKS +++ b/THANKS @@ -175,6 +175,7 @@ Peter Muir iyhi@yahoo.com Petter Reinholdtsen pere@hungry.com Phil Nelson phil@cs.wwu.edu Philip Fong pwlfong@users.sourceforge.net +Philip S Tellis philip@ncst.ernet.in Rainer Orth ro@techfak.uni-bielefeld.de Rafael Laboissiere laboissiere@psy.mpg.de Raja R Harinath harinath@cs.umn.edu diff --git a/m4/make.m4 b/m4/make.m4 index 6e359d894..a8a9fd80a 100644 --- a/m4/make.m4 +++ b/m4/make.m4 @@ -1,6 +1,6 @@ # Check to see how 'make' treats includes. -*- Autoconf -*- -# Copyright (C) 2001, 2002 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -25,8 +25,9 @@ AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' -doit: +am__doit: @echo done +.PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) @@ -54,8 +55,8 @@ if test "$am__include" = "#"; then _am_result=BSD fi fi -AC_SUBST(am__include) -AC_SUBST(am__quote) -AC_MSG_RESULT($_am_result) +AC_SUBST([am__include]) +AC_SUBST([am__quote]) +AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ])