[MPlayer-cvslog] r26837 - trunk/configure

diego subversion at mplayerhq.hu
Mon May 19 07:40:19 CEST 2008


Author: diego
Date: Mon May 19 07:40:19 2008
New Revision: 26837

Log:
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


Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Mon May 19 07:40:19 2008
@@ -2424,7 +2424,7 @@ int main(void) { return 0; }
 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"
 



More information about the MPlayer-cvslog mailing list