diff options
author | David Robillard <d@drobilla.net> | 2012-09-10 17:41:31 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-09-10 17:41:31 +0000 |
commit | a800945e71dfe14b8385923d88d877f37f1eb520 (patch) | |
tree | 96eb3323aa577d14b448c2bc9b50e5971df94b6c | |
parent | 5e46b914605f6b5ba8e256b9d4bc5797238d50b1 (diff) | |
download | autowaf-a800945e71dfe14b8385923d88d877f37f1eb520.tar.gz autowaf-a800945e71dfe14b8385923d88d877f37f1eb520.tar.bz2 autowaf-a800945e71dfe14b8385923d88d877f37f1eb520.zip |
Fix parallel installable debug libraries for C++.
git-svn-id: http://svn.drobilla.net/autowaf@81 e2e4594f-ea7b-45dc-bc5a-5f5301e603aa
-rw-r--r-- | autowaf.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -321,7 +321,7 @@ def use_lib(bld, obj, libs): else: append_property(obj, 'uselib', ' ' + l) -@feature('c') +@feature('c', 'cxx') @before('apply_link') def version_lib(self): if sys.platform == 'win32': |