[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
FYI: AU AC_OUTPUT
From: |
Akim Demaille |
Subject: |
FYI: AU AC_OUTPUT |
Date: |
08 Mar 2001 17:30:55 +0100 |
User-agent: |
Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) |
Index: ChangeLog
from Akim Demaille <address@hidden>
* acgeneral.m4 (AC_OUTPUT): In the AU_DEFUN definition, don't try
to issue an obsolete message, it can't work for macros being
defined both with AC_DEFUN and AU_DEFUN.
Hence do it in the AC_DEFUN definition.
Index: acgeneral.m4
===================================================================
RCS file: /cvs/autoconf/acgeneral.m4,v
retrieving revision 1.701
diff -u -u -r1.701 acgeneral.m4
--- acgeneral.m4 2001/03/02 21:02:07 1.701
+++ acgeneral.m4 2001/03/08 16:19:29
@@ -3520,8 +3520,7 @@
[AC_CONFIG_FILES([$1])])dnl
m4_ifvaln([$2$3],
[AC_CONFIG_COMMANDS(default, [[$2]], [[$3]])])dnl
-[AC_OUTPUT]],
-[`AC_OUTPUT' should be used without arguments.])
+[AC_OUTPUT]])
# AC_OUTPUT([CONFIG_FILES...], [EXTRA-CMDS], [INIT-CMDS])
@@ -3537,6 +3536,10 @@
[AC_CONFIG_FILES([$1])])dnl
m4_ifval([$2$3],
[AC_CONFIG_COMMANDS(default, [$2], [$3])])dnl
+m4_ifval([$1$2$3],
+ [AC_DIAGNOSE([obsolete],
+ [$0 should be used witout arguments.
+You should run autoupdate.])])dnl
AC_CACHE_SAVE
test "x$prefix" = xNONE && prefix=$ac_default_prefix
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- FYI: AU AC_OUTPUT,
Akim Demaille <=