From 92696166d0335802f501d60aadbab98eb73865bd Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Tue, 14 Apr 2009 00:07:31 +0000 Subject: [PATCH] * Removed debug output accidentally committed. * Also allow yasm 0.7.{0,1} -- they have been reported to successfully build at least. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30152 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- configure | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/configure b/configure index ac761b2e09..33d8109caa 100755 --- a/configure +++ b/configure @@ -386,7 +386,7 @@ esac # check yasm version if [ $targetArch = "x86" ]; then $HAIKU_YASM --version > /dev/null || { - echo "The yasm assembler version 0.7.2 or later must be installed." + 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 } @@ -394,13 +394,12 @@ if [ $targetArch = "x86" ]; then set -- $($HAIKU_YASM --version | head -n 1) versionOK=0 case $2 in - 0.[0-6].*) echo match1;; - 0.7.[0-1].*) echo match2;; + 0.[0-6].*) ;; *) versionOK=1 ;; esac if [ $versionOK = 0 ]; then - echo "The yasm assembler version 0.7.2 or later must be installed." + 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