aboutsummaryrefslogtreecommitdiffstats
path: root/configure.pl
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-11-07 01:02:49 +0000
committerlloyd <[email protected]>2008-11-07 01:02:49 +0000
commit08ab0ca8887785231d4203a294a6499e9968cd8d (patch)
tree2a8992a7042ce4f588c00ecb81dc8acd9cb176cb /configure.pl
parentdc3094b3c9538fb4ea84e0899ad6744bb13fb650 (diff)
Fix syntax problems introduced in 80 column wrap
Diffstat (limited to 'configure.pl')
-rwxr-xr-xconfigure.pl7
1 files changed, 2 insertions, 5 deletions
diff --git a/configure.pl b/configure.pl
index ee9bb0b1e..7936162c8 100755
--- a/configure.pl
+++ b/configure.pl
@@ -520,9 +520,6 @@ sub can_enable_module {
next unless defined $MODULES{$req_mod};
if(can_enable_module($config, $req_mod, 1)) {
- autoconfig("Use $req_mod to satisfy dep " .
- "request $_ for mod $mod");
-
push @deps, $req_mod;
next LINE;
}
@@ -1261,7 +1258,7 @@ sub load_modules {
elsif(defined($cpu_info{'unaligned'}) and
$cpu_info{'unaligned'} eq 'ok')
{
- autoconfig("Since arch is $arch, "
+ autoconfig("Since arch is $arch, " .
'assuming unaligned memory access is OK');
$unaligned_ok = 1;
}
@@ -2041,7 +2038,7 @@ sub generate_makefile {
process_template($template, $$config{'makefile'}, $config);
- autoconfig("Wrote ${makmake_style}-style makefile in $$config{'makefile'}");
+ autoconfig("Wrote ${make_style}-style makefile in $$config{'makefile'}");
}
##################################################