# HG changeset patch # User diego # Date 1211175619 0 # Node ID 9ee2a073c09c1b891393dadc4bf00c159d8eeb92 # Parent e49511beeb681baf685d8f50a6843467d724dbf9 Do not run second AltiVec CFLAG check in a subshell; the variable that is set as a result is needed in the calling shell. noticed by Michael Kostylev diff -r e49511beeb68 -r 9ee2a073c09c configure --- a/configure Mon May 19 00:07:17 2008 +0000 +++ b/configure Mon May 19 05:40:19 2008 +0000 @@ -2424,7 +2424,7 @@ EOF cc_check -maltivec -mabi=altivec \ && _altivec_gcc_flags="-maltivec -mabi=altivec" \ - || ( cc_check -faltivec && _altivec_gcc_flags=-faltivec ) \ + || { cc_check -faltivec && _altivec_gcc_flags=-faltivec ; } \ || _altivec=no echores "$_altivec_gcc_flags"