* m4/make.m4: Rename the doit target as am__doit,
authorAlexandre Duret-Lutz <adl@gnu.org>
Wed, 7 May 2003 20:59:08 +0000 (20:59 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Wed, 7 May 2003 20:59:08 +0000 (20:59 +0000)
and make it phony.
Reported by Philip S Tellis.

ChangeLog
THANKS
m4/make.m4

index 4bb5e8d..1c8c833 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2003-05-07  Alexandre Duret-Lutz  <adl@gnu.org>
 
+       * 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  <adl@gnu.org>
+
        * lib/am/configure.am (%MAKEFILE-IN%): Propagate automake's exit
        status.
        * tests/makej.test: New file (test Autom4te's cache locking,
diff --git a/THANKS b/THANKS
index 4b92c83..43987c2 100644 (file)
--- 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
index 6e359d8..a8a9fd8 100644 (file)
@@ -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
 ])