From 8b6dfade4d9a91e2e20958ab7ce567532cc1443e Mon Sep 17 00:00:00 2001 From: Jens Verwiebe Date: Thu, 25 Aug 2011 14:49:47 +0000 Subject: OSX: fix condition for NDOF linking --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 7f11397a286..75b88c36e4c 100644 --- a/SConstruct +++ b/SConstruct @@ -272,7 +272,7 @@ if env['OURPLATFORM']=='darwin': # for now, Mac builders must download and install the 3DxWare 10 Beta 4 driver framework from 3Dconnexion # necessary header file lives here when installed: # /Library/Frameworks/3DconnexionClient.framework/Versions/Current/Headers/ConnexionClientAPI.h - if env['WITH_BF_3DMOUSE'] == 1 and not os.path.exists('/Library/Frameworks/3DconnexionClient.framework'): + if not os.path.exists('/Library/Frameworks/3DconnexionClient.framework'): print "3D_CONNEXION_CLIENT_LIBRARY not found, disabling WITH_BF_3DMOUSE" # avoid build errors ! env['WITH_BF_3DMOUSE'] = 0 else: -- cgit v1.2.3