summaryrefslogtreecommitdiffstats
path: root/autowaf.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-12-16 15:29:15 +0000
committerDavid Robillard <d@drobilla.net>2010-12-16 15:29:15 +0000
commit044d61be72335c17049e537c1ef604ed3df7aa9e (patch)
treeba559f00aadc3fb5ab2147de01fdbf5d02e06335 /autowaf.py
parentb3aa1f3402f962e7ae52965140abe9b3c7dc254f (diff)
downloadautowaf-044d61be72335c17049e537c1ef604ed3df7aa9e.tar.gz
autowaf-044d61be72335c17049e537c1ef604ed3df7aa9e.tar.bz2
autowaf-044d61be72335c17049e537c1ef604ed3df7aa9e.zip
Fix checking for libraries (fix ticket #607 #608).
git-svn-id: http://svn.drobilla.net/autowaf@6 e2e4594f-ea7b-45dc-bc5a-5f5301e603aa
Diffstat (limited to 'autowaf.py')
-rw-r--r--autowaf.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/autowaf.py b/autowaf.py
index a6cd44d..17ee8da 100644
--- a/autowaf.py
+++ b/autowaf.py
@@ -112,13 +112,10 @@ def check_pkg(conf, name, **args):
if 'atleast_version' in args:
conf.env['VERSION_' + name] = args['atleast_version']
else:
- print "!!!!!!!!!!!!!!!!!!!! UNDEFINE ", var_name
conf.undefine(var_name)
if args['mandatory'] == True:
conf.fatal("Required package " + name + " not found")
- define(conf, var_name, 1)
-
def configure(conf):
global g_step
if g_step > 1: