fix error messages
This commit is contained in:
parent
5321a46d97
commit
58d7e12c58
1 changed files with 2 additions and 3 deletions
5
reconf
5
reconf
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env perl
|
||||
|
||||
#
|
||||
# @todo Rewrite this in sh
|
||||
#
|
||||
|
@ -45,8 +44,8 @@ exit
|
|||
);
|
||||
#
|
||||
|
||||
my $aclocal_base = `which aclocal` || die `aclocal not found!`;
|
||||
my $automake_base = `which automake` || die `aclocal not found!`;
|
||||
my $aclocal_base = `which aclocal` || die "aclocal not found!";
|
||||
my $automake_base = `which automake` || die "automake not found!";
|
||||
|
||||
chomp $aclocal_base;
|
||||
chomp $automake_base;
|
||||
|
|
Loading…
Reference in a new issue