From 5b6975fe215989273b92dd1dedfedac674213419 Mon Sep 17 00:00:00 2001 From: rfelker Date: Tue, 17 Jun 2003 16:16:47 +0000 Subject: [PATCH] 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 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index be4321fa15..a27d0eb399 100755 --- a/configure +++ b/configure @@ -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