diff options
author | rfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-06-17 16:16:47 +0000 |
---|---|---|
committer | rfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-06-17 16:16:47 +0000 |
commit | 5b6975fe215989273b92dd1dedfedac674213419 (patch) | |
tree | ad6e94b0482e8b04ae902fbaf92f8d6bad3bcacc /configure | |
parent | 5f1f7b2617ccce79b67dc0bb8db277645ea045ef (diff) | |
download | mpv-5b6975fe215989273b92dd1dedfedac674213419.tar.bz2 mpv-5b6975fe215989273b92dd1dedfedac674213419.tar.xz |
1000l, stupid bash/ksh/etc specific crap. PLEASE learn bourne shell
scripting, people!
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10297 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -871,7 +871,7 @@ EOF _mcpu='-mtune=750' fi if darwin ; then - if [[ `sysctl -n hw.vectorunit` == 1 ]]; then + if [ `sysctl -n hw.vectorunit` -eq 1 ]; then _altivec=yes fi fi |