diff options
author | Karl Lindén <karl.j.linden@gmail.com> | 2015-05-02 10:18:27 +0200 |
---|---|---|
committer | Karl Lindén <karl.j.linden@gmail.com> | 2015-05-02 10:18:27 +0200 |
commit | 11ee46fbbda4d6bcc34d7b9b9fe883d5b772938e (patch) | |
tree | 5ac1759a52e56ab3c0928ef032aa2ffdc8db2996 /wscript | |
parent | d2c85fab0dfcf80a53cbee2ea7609786b5210773 (diff) | |
download | jack2-11ee46fbbda4d6bcc34d7b9b9fe883d5b772938e.tar.gz |
use Options instead of waflib.Options
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -13,7 +13,6 @@ import re import Logs import sys -import waflib.Options from waflib.Build import BuildContext, CleanContext, InstallContext, UninstallContext VERSION='1.9.11' @@ -695,7 +694,7 @@ def build(bld): if not bld.variant: if bld.env['BUILD_WITH_32_64'] == True: - waflib.Options.commands.append(bld.cmd + '_' + lib32) + Options.commands.append(bld.cmd + '_' + lib32) # process subfolders from here bld.add_subdirs('common') |