summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-07-07 16:08:14 -0400
committerJeffrey Walton <noloader@gmail.com>2020-07-07 16:08:14 -0400
commit1b8512271fde42b4a7d83c0c3eea9e97e3fd9f35 (patch)
tree8cc5f87eed103cec2ff08d0ddf77b49e7e32cc3b
parent7415c6aaa87d24302a3a43b989b93efa021c045c (diff)
downloadcryptopp-git-1b8512271fde42b4a7d83c0c3eea9e97e3fd9f35.tar.gz
Update cryptest-autotools.sh script
-rwxr-xr-xTestScripts/cryptest-autotools.sh12
1 files changed, 8 insertions, 4 deletions
diff --git a/TestScripts/cryptest-autotools.sh b/TestScripts/cryptest-autotools.sh
index 9ab6d49f..7aa5bc5b 100755
--- a/TestScripts/cryptest-autotools.sh
+++ b/TestScripts/cryptest-autotools.sh
@@ -39,13 +39,13 @@ fi
# Fixup for missing libtool
if [[ ! -z $(command -v libtoolize) ]]; then
- LIBTOOLIZE=$(command -v libtoolize)
+ export LIBTOOLIZE=$(command -v libtoolize)
elif [[ ! -z $(command -v glibtoolize) ]]; then
- LIBTOOLIZE=$(command -v glibtoolize)
+ export LIBTOOLIZE=$(command -v glibtoolize)
elif [[ ! -z $(command -v libtool) ]]; then
- LIBTOOLIZE=$(command -v libtool)
+ export LIBTOOLIZE=$(command -v libtool)
elif [[ ! -z $(command -v glibtool) ]]; then
- LIBTOOLIZE=$(command -v glibtool)
+ export LIBTOOLIZE=$(command -v glibtool)
fi
#############################################################################
@@ -92,12 +92,16 @@ if ! autoupdate &>/dev/null; then
exit 1
fi
+if false; then
+
echo "Running libtoolize"
if ! "$LIBTOOLIZE" --force --install &>/dev/null; then
echo "libtoolize failed... skipping."
# exit 1
fi
+fi
+
# Run autoreconf twice on failure. Also see
# https://github.com/tracebox/tracebox/issues/57
echo "Running autoreconf"