Commit 7752cee4 authored by unknown's avatar unknown

autorun.sh:

  After review changes


BUILD/autorun.sh:
  After review changes
parent 1b261d3d
...@@ -3,17 +3,17 @@ ...@@ -3,17 +3,17 @@
die() { echo "$@"; exit 1; } die() { echo "$@"; exit 1; }
# Added glibtoolize reference to make native OSX autotools work, # Handle "glibtoolize" (e.g., for native OS X autotools) as another
# we pick the first of glibtoolize/libtoolize we find in PATH # name for "libtoolize". Use the first one, either name, found in PATH.
LIBTOOLIZE=libtoolize # Default LIBTOOLIZE=libtoolize # Default
IFS="${IFS= }"; save_ifs="$IFS"; IFS=':' IFS="${IFS= }"; save_ifs="$IFS"; IFS=':'
for dir in $PATH for dir in $PATH
do do
if test -f $dir/glibtoolize if test -x $dir/glibtoolize
then then
LIBTOOLIZE=glibtoolize LIBTOOLIZE=glibtoolize
break break
elif test -f $dir/libtoolize elif test -x $dir/libtoolize
then then
break break
fi fi
......
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