Skip to content

Commit

Permalink
autogen: Get rid of glibtool checks.
Browse files Browse the repository at this point in the history
Mac now has libtool, and no longer needs glibtool.

Signed-off-by: Ken Raffenetti <raffenet@mcs.anl.gov>
  • Loading branch information
pavanbalaji authored and raffenet committed Oct 17, 2017
1 parent d4daffb commit a512f95
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions autogen.sh
Expand Up @@ -331,11 +331,7 @@ if [ -n "$autotoolsdir" ] ; then
automake=$autotoolsdir/automake
autom4te=$autotoolsdir/autom4te
aclocal=$autotoolsdir/aclocal
if [ -x "$autotoolsdir/glibtoolize" ] ; then
libtoolize=$autotoolsdir/glibtoolize
else
libtoolize=$autotoolsdir/libtoolize
fi
libtoolize=$autotoolsdir/libtoolize

AUTOCONF=$autoconf
AUTOHEADER=$autoheader
Expand Down Expand Up @@ -363,11 +359,7 @@ else
autom4te=${AUTOM4TE:-autom4te}
automake=${AUTOMAKE:-automake}
aclocal=${ACLOCAL:-aclocal}
if test -z "${LIBTOOLIZE+set}" && ( glibtoolize --version ) >/dev/null 2>&1 ; then
libtoolize=glibtoolize
else
libtoolize=${LIBTOOLIZE:-libtoolize}
fi
libtoolize=${LIBTOOLIZE:-libtoolize}
fi

ProgHomeDir $autoconf autoconfdir
Expand Down

0 comments on commit a512f95

Please sign in to comment.