Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
06170db6
Commit
06170db6
authored
Nov 11, 2002
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- "head/tail -<num>" is obsolete according to POSIX.1-2001 - use
"head/tail -n <num>" instead
parent
723d854b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Build-tools/Do-compile
Build-tools/Do-compile
+2
-2
No files found.
Build-tools/Do-compile
View file @
06170db6
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment