Branch
Hash :
94046104
Author :
Thomas de Grivel
Date :
2020-02-24T15:19:27
#!/bin/sh
display_and_run() {
echo $*
$* || exit 1
}
display_and_run ./update-libs -f
if test -x "`which libtoolize`"; then
display_and_run libtoolize -c -f
elif test -x "`which glibtoolize`"; then
display_and_run glibtoolize -c -f
else
echo "libtoolize not found !"
exit 1
fi
display_and_run aclocal
display_and_run autoconf
display_and_run automake --add-missing -c