From cdfc7154872506c422991bcacedd04d4becb9c4e Mon Sep 17 00:00:00 2001 From: Jean-Pierre Flori Date: Fri, 2 Aug 2013 20:50:22 +0200 Subject: [PATCH] Fix for ABI testing on Cygwin/MinGW. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 4f7a00a2..bf34b609 100644 --- a/configure.ac +++ b/configure.ac @@ -2604,7 +2604,7 @@ done # cant move them yet as the mpn directory is not created until the end case $host in *-w64-mingw*|*-*-cygwin*) - if "$ABI" = "64"; then + if test "$ABI" = "64"; then old_gmp_srclinks=$gmp_srclinks gmp_srclinks= for jay in $old_gmp_srclinks; do @@ -3022,7 +3022,7 @@ fi # and post process the "m4 macros" into "yasm macros" case $host in *-w64-mingw*|*-*-cygwin*) - if "$ABI" = "64"; then + if test "$ABI" = "64"; then for jay in $old_gmp_srclinks; do jayext=`echo "$jay" | awk -F . '{print $NF}'` #jayext=`/bin/echo "${jay#*.}"`