summaryrefslogtreecommitdiff
path: root/TestScripts/cryptest-autotools.sh
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2022-02-12 21:04:53 -0500
committerJeffrey Walton <noloader@gmail.com>2022-02-12 21:04:53 -0500
commit749a8b34d4a108c00cccb548a4ffa2f69412afc0 (patch)
tree8d60092db2a5d9956c68475fc4ced802343451db /TestScripts/cryptest-autotools.sh
parent911d8c43470228a2293f643b98ccf8442397da73 (diff)
downloadcryptopp-git-749a8b34d4a108c00cccb548a4ffa2f69412afc0.tar.gz
Update cryptest-autools.sh script
Diffstat (limited to 'TestScripts/cryptest-autotools.sh')
-rwxr-xr-xTestScripts/cryptest-autotools.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/TestScripts/cryptest-autotools.sh b/TestScripts/cryptest-autotools.sh
index 6f50ae58..a51f653e 100755
--- a/TestScripts/cryptest-autotools.sh
+++ b/TestScripts/cryptest-autotools.sh
@@ -106,6 +106,10 @@ mkdir -p m4/
#############################################################################
+
+# Disable this. It is now in bootstrap.sh
+if false; then
+
echo "Running aclocal"
if ! aclocal &>/dev/null; then
echo "aclocal failed."
@@ -129,8 +133,17 @@ if ! autoreconf --force --install &>/dev/null; then
fi
fi
+fi # disabled
+
+if ! ./bootstrap.sh; then
+ echo "bootstrap failed."
+fi
+
#############################################################################
+# Disable this. It is now in bootstrap.sh
+if false; then
+
# Update config.sub config.guess. GNU recommends using the latest for all projects.
echo "Updating config.sub"
curl -L -s -o config.sub.new 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub'
@@ -158,6 +171,8 @@ if [[ "$IS_DARWIN" -ne 0 ]] && [[ -n $(command -v xattr 2>/dev/null) ]]; then
xattr -d "com.apple.quarantine" build-aux/config.guess &>/dev/null
fi
+fi # disabled
+
#############################################################################
echo "Running configure"