]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Add quotes to the header of autoscan-generated source.
authorStepan Kasal <skasal@redhat.com>
Wed, 2 Jul 2008 13:38:24 +0000 (15:38 +0200)
committerStepan Kasal <skasal@redhat.com>
Wed, 2 Jul 2008 13:38:24 +0000 (15:38 +0200)
* bin/autoscan.in: Add quotes to AC_PREREQ and AC_INIT.

Signed-off-by: Stepan Kasal <skasal@redhat.com>
ChangeLog
bin/autoscan.in

index 70b9b664eb995ff2782e6b588a536c90fb35360c..cb4adb561e0cdea0919fa13ac3bdc4cae2dc7ade 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-07-02  Stepan Kasal  <skasal@redhat.com>
+
+       Add quotes to the header of autoscan-generated source.
+       * bin/autoscan.in: Add quotes to AC_PREREQ and AC_INIT.
+
 2008-06-28  Andreas Schwab  <schwab@suse.de>
 
        * doc/autoconf.texi (autoscan Invocation): Fix spacing.
index 2fe2809e34c79649c23ca8125945f71a10edfbb6..83fa6fcb1eb93eb3cb70bfbf9442ba6ab7df05b5 100644 (file)
@@ -527,8 +527,8 @@ sub output ($)
     ("#                                               -*- Autoconf -*-\n" .
      "# Process this file with autoconf to produce a configure script.\n" .
      "\n" .
-     "AC_PREREQ(@VERSION@)\n" .
-     "AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)\n");
+     "AC_PREREQ([@VERSION@])\n" .
+     "AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])\n");
   if (defined $cfiles[0])
     {
       print $file "AC_CONFIG_SRCDIR([$cfiles[0]])\n";