summaryrefslogtreecommitdiff
path: root/Build-tools/Do-compile
diff options
context:
space:
mode:
authorunknown <lenz@mysql.com>2002-11-11 14:25:30 +0100
committerunknown <lenz@mysql.com>2002-11-11 14:25:30 +0100
commit06170db614c35c078436b0941d08ffbde226b588 (patch)
tree88eb1166f0abc1c0e3622a3b196ab1e135c74c08 /Build-tools/Do-compile
parent723d854beafae248347edd57b1fa1c07eb0f901b (diff)
downloadmariadb-git-06170db614c35c078436b0941d08ffbde226b588.tar.gz
- "head/tail -<num>" is obsolete according to POSIX.1-2001 - use
"head/tail -n <num>" instead
Diffstat (limited to 'Build-tools/Do-compile')
-rwxr-xr-xBuild-tools/Do-compile4
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