aboutsummaryrefslogtreecommitdiff
path: root/interpreter.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-03-24 15:04:51 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2013-03-24 15:04:51 +0200
commit70f6b769a69aa741bd7757d82829e50a93303c50 (patch)
treec020d416c6d3b07e119b6b4dc2ef9fdacc776bc4 /interpreter.py
parent92084b6d9e71fc32a2e33658e2623003b14d4b0d (diff)
downloadmeson-70f6b769a69aa741bd7757d82829e50a93303c50.zip
meson-70f6b769a69aa741bd7757d82829e50a93303c50.tar.gz
meson-70f6b769a69aa741bd7757d82829e50a93303c50.tar.bz2
Added custom detector framework and a Boost detector to it.
Diffstat (limited to 'interpreter.py')
-rwxr-xr-xinterpreter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/interpreter.py b/interpreter.py
index 2c39344..87b4e0b 100755
--- a/interpreter.py
+++ b/interpreter.py
@@ -824,7 +824,7 @@ class Interpreter():
def is_assignable(self, value):
if isinstance(value, InterpreterObject) or \
- isinstance(value, environment.PkgConfigDependency) or\
+ isinstance(value, environment.Dependency) or\
isinstance(value, nodes.StringStatement) or\
isinstance(value, nodes.BoolStatement) or\
isinstance(value, nodes.IntStatement) or\