Skip to content

Commit f609159

Browse files
committed
Merge bitcoin#779: travis: Fix argument quoting for ./configure
9e49a9b travis: Fix argument quoting for ./configure (Tim Ruffing) Pull request description: ACKs for top commit: jonasnick: ACK 9e49a9b Tree-SHA512: 53efa7134de978912d604bc9685bc779f98e2d72e5f77636595676aa420c04fc934a6bb9d560d74b58197943ab86708d3b913e79bc3dfb856681b26dda8724b3
2 parents 214cb3c + 9e49a9b commit f609159

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

contrib/travis.sh

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
set -e
44
set -x
55

6-
if [ -n "$HOST" ]
7-
then
8-
export USE_HOST="--host=$HOST"
9-
fi
106
if [ "$HOST" = "i686-linux-gnu" ]
117
then
128
export CC="$CC -m32"
@@ -20,7 +16,8 @@ fi
2016
--enable-experimental="$EXPERIMENTAL" --enable-endomorphism="$ENDOMORPHISM" \
2117
--with-field="$FIELD" --with-bignum="$BIGNUM" --with-asm="$ASM" --with-scalar="$SCALAR" \
2218
--enable-ecmult-static-precomputation="$STATICPRECOMPUTATION" --with-ecmult-gen-precision="$ECMULTGENPRECISION" \
23-
--enable-module-ecdh="$ECDH" --enable-module-recovery="$RECOVERY" "$EXTRAFLAGS" "$USE_HOST"
19+
--enable-module-ecdh="$ECDH" --enable-module-recovery="$RECOVERY" \
20+
--host="$HOST" $EXTRAFLAGS
2421

2522
if [ -n "$BUILD" ]
2623
then

0 commit comments

Comments
 (0)