diff options
author | unknown <lenz@mysql.com> | 2002-11-11 14:25:30 +0100 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2002-11-11 14:25:30 +0100 |
commit | e8390bfa88aecc25acfef7fe2cf0d7829fbbce3f (patch) | |
tree | 88eb1166f0abc1c0e3622a3b196ab1e135c74c08 /Build-tools | |
parent | 5c556c053bbb8275b9c4795a07434e4589328585 (diff) | |
download | mariadb-git-e8390bfa88aecc25acfef7fe2cf0d7829fbbce3f.tar.gz |
- "head/tail -<num>" is obsolete according to POSIX.1-2001 - use
"head/tail -n <num>" instead
Diffstat (limited to 'Build-tools')
-rwxr-xr-x | Build-tools/Do-compile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build-tools/Do-compile b/Build-tools/Do-compile index 8381dd7c1ee..8d647ef0d82 100755 --- a/Build-tools/Do-compile +++ b/Build-tools/Do-compile @@ -536,7 +536,7 @@ sub abort print TMP "To: $email\n"; print TMP "Subject: $ver$opt_version_suffix compilation failed\n\n"; 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"); unlink($mail_header_file); unlink("$log.mail"); @@ -612,7 +612,7 @@ sub which my(@progs)=@_; foreach $prog (@progs) { - chomp($found=`which $prog | head -1`); + chomp($found=`which $prog | head -n 1`); if ($? == 0 && $found ne "" && index($found," ") == -1) { $found =~ s|/+|/|g; # Make nicer output |