diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-05-19 05:40:19 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-05-19 05:40:19 +0000 |
commit | a2fda39c21217c6bfe964e765a9c5015af42a46b (patch) | |
tree | ef1736846f8ba6ab4c5f087a54de09dd517949cf | |
parent | 745662aafa3ad219b72571ba9caad278f3521e11 (diff) |
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
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26837 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |