]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* doc/autoconf.texi (Making testsuite Scripts): Use `@@' where a
authorAkim Demaille <akim@epita.fr>
Mon, 9 Sep 2002 16:10:14 +0000 (16:10 +0000)
committerAkim Demaille <akim@epita.fr>
Mon, 9 Sep 2002 16:10:14 +0000 (16:10 +0000)
plain `@' is wanted.

ChangeLog
doc/autoconf.texi

index f3f1c991137edfe0001b76038f51955043c41b4b..f8fbd2dbb4a6919afb109886166d119070f55163 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-09-09  Koji Arai  <JCA02266@nifty.ne.jp>
+
+       * doc/autoconf.texi (Making testsuite Scripts): Use `@@' where a
+       plain `@' is wanted.
+
 2002-09-09  Akim Demaille  <akim@epita.fr>
 
        * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Keep the
index 179a18c66cd1838161e12c0bdfbb6be2e243f215..627315f267c39772ea4cc9ff183c0c000d13a87c 100644 (file)
@@ -13718,8 +13718,8 @@ check-local: atconfig atlocal $(TESTSUITE)
 
 AUTOTEST = $(AUTOM4TE) --language=autotest
 $(TESTSUITE): $(srcdir)/testsuite.at
-        $(AUTOTEST) -I $(srcdir) $@.at -o $@.tmp
-        mv $@.tmp $@
+        $(AUTOTEST) -I $(srcdir) $@@.at -o $@@.tmp
+        mv $@@.tmp $@@
 @end example
 
 You might want to list explicitly the dependencies, i.e., the list of
@@ -13733,11 +13733,11 @@ subdir = tests
 
 atconfig: $(top_builddir)/config.status
         cd $(top_builddir) && \
-           $(SHELL) ./config.status $(subdir)/$@
+           $(SHELL) ./config.status $(subdir)/$@@
 
 atlocal: $(srcdir)/atlocal.in $(top_builddir)/config.status
         cd $(top_builddir) && \
-           $(SHELL) ./config.status $(subdir)/$@
+           $(SHELL) ./config.status $(subdir)/$@@
 @end example
 
 @noindent