From 358bc2bb455cbef9637e1464bbf860b04147c578 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 26 Jan 2011 20:15:18 +0000 Subject: [PATCH] fix conditional assignment of tools_subdirs git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@8582 d708f5d6-7413-0410-9779-e7cbd77b26cf --- SConstruct | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SConstruct b/SConstruct index d6a41ac8db..8bc6e00bc9 100644 --- a/SConstruct +++ b/SConstruct @@ -1239,6 +1239,8 @@ if env['RUBBERBAND']: # if env['IS_OSX'] == 0 : tools_subdirs = [ 'tools/sanity_check' ] +else: + tools_subdirs = [ ] opts.Save('scache.conf', env)