summaryrefslogtreecommitdiff
path: root/bin/autoscan.in
diff options
context:
space:
mode:
Diffstat (limited to 'bin/autoscan.in')
-rw-r--r--bin/autoscan.in13
1 files changed, 8 insertions, 5 deletions
diff --git a/bin/autoscan.in b/bin/autoscan.in
index 0026c428..ef7e0c12 100644
--- a/bin/autoscan.in
+++ b/bin/autoscan.in
@@ -23,6 +23,10 @@
eval 'case $# in 0) exec @PERL@ -S "$0";; *) exec @PERL@ -S "$0" "$@";; esac'
if 0;
+use 5.006;
+use strict;
+use warnings;
+
BEGIN
{
my $pkgdatadir = $ENV{'autom4te_perllibdir'} || '@pkgdatadir@';
@@ -35,15 +39,14 @@ BEGIN
$ENV{'SHELL'} = '@SHELL@' if ($^O eq 'dos');
}
+use File::Basename;
+use File::Find;
+
use Autom4te::ChannelDefs;
use Autom4te::Configure_ac;
-use Autom4te::General;
use Autom4te::FileUtils;
+use Autom4te::General;
use Autom4te::XFile;
-use File::Basename;
-use File::Find;
-use strict;
-use warnings;
use vars qw(@cfiles @makefiles @shfiles @subdirs %printed);