Commit 06170db6 authored by unknown's avatar unknown

- "head/tail -<num>" is obsolete according to POSIX.1-2001 - use

   "head/tail -n <num>" instead
parent 723d854b
...@@ -536,7 +536,7 @@ sub abort ...@@ -536,7 +536,7 @@ sub abort
print TMP "To: $email\n"; print TMP "To: $email\n";
print TMP "Subject: $ver$opt_version_suffix compilation failed\n\n"; print TMP "Subject: $ver$opt_version_suffix compilation failed\n\n";
close TMP; close TMP;
system("tail -40 $log > $log.mail"); system("tail -n 40 $log > $log.mail");
system("cat $mail_header_file $log.mail | $sendmail -t -f $email"); system("cat $mail_header_file $log.mail | $sendmail -t -f $email");
unlink($mail_header_file); unlink($mail_header_file);
unlink("$log.mail"); unlink("$log.mail");
...@@ -612,7 +612,7 @@ sub which ...@@ -612,7 +612,7 @@ sub which
my(@progs)=@_; my(@progs)=@_;
foreach $prog (@progs) foreach $prog (@progs)
{ {
chomp($found=`which $prog | head -1`); chomp($found=`which $prog | head -n 1`);
if ($? == 0 && $found ne "" && index($found," ") == -1) if ($? == 0 && $found ne "" && index($found," ") == -1)
{ {
$found =~ s|/+|/|g; # Make nicer output $found =~ s|/+|/|g; # Make nicer output
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment