aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2005-03-10 01:11:42 +0000
committerH. Peter Anvin <hpa@zytor.com>2005-03-10 01:11:42 +0000
commitfc87a07637ca70152ef638a86422f5c99d1dd5ed (patch)
tree94181ebb293e2a1160e7beadd9f5a41a8a195cdc
parented2cef436451e5d8ed3826c4ac048118250c2ddc (diff)
downloadklibc-fc87a07637ca70152ef638a86422f5c99d1dd5ed.tar.gz
qw ( ) to qw( )klibc-1.0.1
-rwxr-xr-xmakeklcc.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/makeklcc.pl b/makeklcc.pl
index 0062e9d61d6b9..f8a6294db3faa 100755
--- a/makeklcc.pl
+++ b/makeklcc.pl
@@ -15,7 +15,7 @@ while ( defined($l = <KLIBCCONF>) ) {
if ( $l =~ /^([^=]+)\=(.*)$/ ) {
$n = $1; $s = $2;
print "\$$n = \"\Q$s\E\";\n";
- print "\@$n = qw ($s);\n";
+ print "\@$n = qw($s);\n";
print "\$conf{\'\L$n\E\'} = \\\$$n;\n";
}
}