Browse Source

use Options instead of waflib.Options

tags/v1.9.11-RC1
Karl Lindén 10 years ago
parent
commit
11ee46fbbd
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      wscript

+ 1
- 2
wscript View File

@@ -13,7 +13,6 @@ import re
import Logs import Logs
import sys import sys


import waflib.Options
from waflib.Build import BuildContext, CleanContext, InstallContext, UninstallContext from waflib.Build import BuildContext, CleanContext, InstallContext, UninstallContext


VERSION='1.9.11' VERSION='1.9.11'
@@ -695,7 +694,7 @@ def build(bld):


if not bld.variant: if not bld.variant:
if bld.env['BUILD_WITH_32_64'] == True: 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 # process subfolders from here
bld.add_subdirs('common') bld.add_subdirs('common')


Loading…
Cancel
Save