Add quotes to the header of autoscan-generated source.

* bin/autoscan.in: Add quotes to AC_PREREQ and AC_INIT.

Signed-off-by: Stepan Kasal <skasal@redhat.com>
This commit is contained in:
Stepan Kasal 2008-07-02 15:38:24 +02:00
parent 8f052f4c5a
commit 886a634111
2 changed files with 7 additions and 2 deletions

View File

@ -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.

View 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";