summaryrefslogtreecommitdiff
path: root/m4/make.m4
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2001-02-08 05:48:09 +0000
committerTom Tromey <tromey@redhat.com>2001-02-08 05:48:09 +0000
commit68cbb3217d71a1907ed1949a05fd327f1278d032 (patch)
tree0e3579a9bb064b69c817db03f211d51d25fb87b4 /m4/make.m4
parent522efd83ea4593bae3193ed44db1a3a5d762d67b (diff)
downloadautomake-68cbb3217d71a1907ed1949a05fd327f1278d032.tar.gz
* automake.in (handle_dependencies): Use _am_include, not
AMINCLUDE. * tests/exsource.test: Use _am_include, not AMINCLUDE. * m4/make.m4 (AM_MAKE_INCLUDE): Use _am_include, not AMINCLUDE.
Diffstat (limited to 'm4/make.m4')
-rw-r--r--m4/make.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/m4/make.m4 b/m4/make.m4
index 7a8b644be..38104717d 100644
--- a/m4/make.m4
+++ b/m4/make.m4
@@ -10,15 +10,15 @@ 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])
-AMINCLUDE='#'
+_am_include='#'
for am_inc in include .include; do
echo "$am_inc confinc" > confmf
if test "`$am_make -f confmf 2> /dev/null`" = "done"; then
- AMINCLUDE=$am_inc
+ _am_include=$am_inc
break
fi
done
-AC_SUBST(AMINCLUDE)
-AC_MSG_RESULT($AMINCLUDE)
+AC_SUBST(_am_include)
+AC_MSG_RESULT($_am_include)
rm -f confinc confmf
])