]> granicus.if.org Git - curl/commitdiff
No longer hide aclocal 'underquoted definition' warnings.
authorYang Tse <yangsita@gmail.com>
Sat, 26 Jul 2008 00:19:03 +0000 (00:19 +0000)
committerYang Tse <yangsita@gmail.com>
Sat, 26 Jul 2008 00:19:03 +0000 (00:19 +0000)
http://sources.redhat.com/automake/automake.html#Extending-aclocal documents
that starting with Automake 1.8, aclocal will warn about all underquoted calls
to AC_DEFUN due to the fact that in a single aclocal run it might include more
than once all .m4 files which it finds available, this includes .m4 files from
other software packages.

If the first argument to AC_DEFUN is underquoted and the same macro is included
more than once, successive inclusions after the first one will expand the macro
instead of assuming it is the same as the first one included.

tests/testcurl.pl

index 2c0d547e5d89ed0de2200b61df13d2ce4e4c57bc..7bae91727db8e8d64f921a564a74b7d776e727ea 100755 (executable)
@@ -395,7 +395,6 @@ if ($CVS) {
     open(F, "./buildconf 2>&1 |") or die;
     open(LOG, ">$buildlog") or die;
     while (<F>) {
-      next if /warning: underquoted definition of/;
       print;
       print LOG;
     }