From bd291de302b781ac9d216c80c816d17dfa1cda33 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Thu, 3 Nov 2011 14:27:39 +0000 Subject: [PATCH] Remove yasm check. Looks like I had accidentally (?) disabled the version already. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@43165 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- configure | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/configure b/configure index a93bd04b67..5eb2a3089a 100755 --- a/configure +++ b/configure @@ -464,30 +464,6 @@ case "${platform}" in exit 1 ;; esac -# check yasm version -if [ $targetArch = "x86" ]; then - $HAIKU_YASM --version > /dev/null || { - echo "The yasm assembler version 0.7.0 or later must be installed." - echo "Download from: http://www.tortall.net/projects/yasm/wiki/Download" - exit 1 - } - - set -- $($HAIKU_YASM --version | head -n 1) - versionOK=0 - case $2 in - 0.[0-6].*) ;; - *) versionOK=1 ;; - esac -versionOK=1 - - if [ $versionOK = 0 ]; then - echo "The yasm assembler version 0.7.0 or later must be installed." - echo "The installed version is $2." - echo "Download from: http://www.tortall.net/projects/yasm/wiki/Download" - exit 1 - fi -fi - # check common locations for sfdisk for sfdiskDir in /sbin /usr/sbin /usr/local/sbin ; do if [ -e ${sfdiskDir}/${SFDISK_BINARY} ]; then