mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
22 lines
459 B
Bash
22 lines
459 B
Bash
#! /bin/sh
|
|
|
|
# make sure to use the installed libtool
|
|
if [ -f ltmain.sh ]; then
|
|
rm ltmain.sh
|
|
fi
|
|
autoreconf -fiv
|
|
|
|
###################################################
|
|
# the steps below may help with outdated toolsets
|
|
|
|
# disable dependency trackeing for OS X with multiply arch option's
|
|
# automake -i --gnu --add-missing
|
|
|
|
|
|
#aclocal \
|
|
#&& automake -i --gnu --add-missing \
|
|
#&& autoconf
|
|
|
|
#LIBTOOLIZE=$( which libtoolize glibtoolize | head -1 )
|
|
#$LIBTOOLIZE -f
|