run-checker: disable debug flag for builds
authorPauli <pauli@openssl.org>
Tue, 4 May 2021 08:14:32 +0000 (18:14 +1000)
committerPauli <pauli@openssl.org>
Tue, 4 May 2021 08:14:32 +0000 (18:14 +1000)
It is more representative of reality.

Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/tools/pull/86)

run-checker/run-checker.sh

index b59283ca59461ed366d358ce50860bda8744141c..dbb3da5a1ae8ee18f443ad9f642a90f87b4768e0 100755 (executable)
@@ -132,7 +132,7 @@ if run-hook prepare; then
         else
             builddir="$(echo $opt | sed -e 's|[ /]|_|g')"
         fi
-        if run-hook start "$builddir" "$opt" -d $warnopts $expandedopts; then
+        if run-hook start "$builddir" "$opt" $warnopts $expandedopts; then
             if (
                 set -e
 
@@ -143,7 +143,7 @@ if run-hook prepare; then
 
                 echo "Building with '$opt'"
                 log-eval \
-                    CC=$optcc ../openssl/config -d $warnopts $expandedopts \
+                    CC=$optcc ../openssl/config $warnopts $expandedopts \
                     >build.log 2>&1 || \
                     exit $?