sbekman 01/04/20 11:25:49 Modified: lib/ModPerl Config.pm Log: use strict Revision Changes Path 1.2 +2 -1 modperl-2.0/lib/ModPerl/Config.pm Index: Config.pm =================================================================== RCS file: /home/cvs/modperl-2.0/lib/ModPerl/Config.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- Config.pm 2001/04/20 18:08:03 1.1 +++ Config.pm 2001/04/20 18:25:45 1.2 @@ -1,5 +1,6 @@ package ModPerl::Config; +use strict; use lib qw(Apache-Test/lib); use Apache::Build (); @@ -19,7 +20,7 @@ my $test_config = Apache::TestConfig->new; my $httpd = $test_config->{vars}->{httpd}; - $command = "$httpd -v"; + my $command = "$httpd -v"; $cfg .= "\n\n*** $command\n"; $cfg .= qx{$command};