unit-cc: Use the same preamble as other Perl tools.

This commit is contained in:
Peter Powell 2015-03-22 01:52:10 +00:00
parent 70faab99c8
commit 953ca72cfe

View File

@ -19,9 +19,14 @@
#
BEGIN {
push @INC, $ENV{SOURCEPATH};
require 5.10.0;
}
use strict;
use warnings;
BEGIN { push @INC, $ENV{SOURCEPATH}; }
use warnings FATAL => qw(all);
use make::configure;
chdir $ENV{BUILDPATH};