mirror of
https://github.com/MariaDB/server.git
synced 2026-04-21 15:55:53 +02:00
autorun.sh:
After review changes
This commit is contained in:
parent
5218a5d033
commit
a77f626cc9
1 changed files with 4 additions and 4 deletions
|
|
@ -3,17 +3,17 @@
|
|||
|
||||
die() { echo "$@"; exit 1; }
|
||||
|
||||
# Added glibtoolize reference to make native OSX autotools work,
|
||||
# we pick the first of glibtoolize/libtoolize we find in PATH
|
||||
# Handle "glibtoolize" (e.g., for native OS X autotools) as another
|
||||
# name for "libtoolize". Use the first one, either name, found in PATH.
|
||||
LIBTOOLIZE=libtoolize # Default
|
||||
IFS="${IFS= }"; save_ifs="$IFS"; IFS=':'
|
||||
for dir in $PATH
|
||||
do
|
||||
if test -f $dir/glibtoolize
|
||||
if test -x $dir/glibtoolize
|
||||
then
|
||||
LIBTOOLIZE=glibtoolize
|
||||
break
|
||||
elif test -f $dir/libtoolize
|
||||
elif test -x $dir/libtoolize
|
||||
then
|
||||
break
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue