diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-03-24 15:04:51 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-03-24 15:04:51 +0200 |
commit | 70f6b769a69aa741bd7757d82829e50a93303c50 (patch) | |
tree | c020d416c6d3b07e119b6b4dc2ef9fdacc776bc4 /interpreter.py | |
parent | 92084b6d9e71fc32a2e33658e2623003b14d4b0d (diff) | |
download | meson-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-x | interpreter.py | 2 |
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\ |