Attached is a patch that cleans up the code in makedef.pl that I added,
like Merijn suggested.
-max
Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
$ENV{PERL5LIB} = join $Config{path_sep}, @INC;
my $cmd = "$^X $opts -V";
- my $config = `$cmd`;
- if (! $config) {
- die "Couldn't run [$cmd]: $!";
- };
+ my $config = `$cmd`
+ or die "Couldn't run [$cmd]: $!";
my($options) = $config =~ /^ Compile-time options: (.*?)\n^ \S/ms;
$options =~ s/\s+/ /g;
print STDERR "Options: ($options)\n";