diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-05-23 00:24:28 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-05-23 00:24:28 +0000 |
commit | 6930a03a308a2257bc06dab82248fa3fdf1ecd6b (patch) | |
tree | ae6878461c8c903659e2d921ffccd6df4769dd1c | |
parent | 654e52202599bb6172846a7d319cc4f8e3c869ff (diff) |
Make configure run even on non POSIX compliant shells (Solaris).
Patch by Götz Waschk <waschk@informatik.uni-rostock.de>.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10158 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -869,7 +869,7 @@ EOF _mcpu='-mtune=750' fi if darwin ; then - if [[ $(sysctl -n hw.vectorunit) == 1 ]]; then + if [[ `sysctl -n hw.vectorunit` == 1 ]]; then _altivec=yes fi fi |