From b23c702606d502307b27c7b6cdb616d6f3a85e29 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 9 Aug 2012 01:28:29 +0000 Subject: Fix static stuff. git-svn-id: http://svn.drobilla.net/lad/trunk/sratom@4627 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/wscript b/wscript index aa467a7..dfa3fe3 100644 --- a/wscript +++ b/wscript @@ -42,8 +42,10 @@ def configure(conf): conf.env.BUILD_TESTS = Options.options.build_tests conf.env.BUILD_SHARED = not Options.options.no_shared - conf.env.BUILD_STATIC = (Options.options.static or - Options.options.static_progs) + conf.env.BUILD_STATIC = Options.options.static + + if not conf.env.BUILD_SHARED and not conf.env.BUILD_STATIC: + conf.fatal('Neither a shared nor a static build requested') # Check for gcov library (for test coverage) if conf.env.BUILD_TESTS: -- cgit v1.2.1