diff options
Diffstat (limited to 'ubi-utils/bootstrap')
-rwxr-xr-x | ubi-utils/bootstrap | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ubi-utils/bootstrap b/ubi-utils/bootstrap new file mode 100755 index 0000000..f543912 --- /dev/null +++ b/ubi-utils/bootstrap @@ -0,0 +1,15 @@ +#!/bin/bash +LIBTOOLM4="/usr/local/share/libtool/libltdl" + +if test -d "$LIBTOOLM4"; then + echo "+ aclocal ${LIBTOOLM4}" + aclocal -I ${LIBTOOLM4} +else + echo "+ aclocal" + aclocal +fi +set -x +libtoolize --force +autoheader +automake --foreign --add-missing --copy +autoconf |