summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorStepan Kasal <skasal@redhat.com>2008-07-02 15:38:24 +0200
committerStepan Kasal <skasal@redhat.com>2008-07-02 15:38:24 +0200
commit886a6341110e104d105abdfc11471bc82fd28aa0 (patch)
tree0668c96aa2d992041fbbfd1a62a35d6673218dc0 /bin
parent8f052f4c5a830cd53cad84eaf6cbdcbae4855ed6 (diff)
downloadautoconf-886a6341110e104d105abdfc11471bc82fd28aa0.tar.gz
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>
Diffstat (limited to 'bin')
-rw-r--r--bin/autoscan.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/autoscan.in b/bin/autoscan.in
index 2fe2809e..83fa6fcb 100644
--- a/bin/autoscan.in
+++ b/bin/autoscan.in
@@ -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";