diff options
| author | David Cournapeau <cournape@gmail.com> | 2011-05-30 09:11:12 +0900 |
|---|---|---|
| committer | David Cournapeau <cournape@gmail.com> | 2011-08-29 00:32:27 +0200 |
| commit | d247f01753c64548a08c08892e89808bc6b73d2b (patch) | |
| tree | 5a00173b54090ef2b5693b289b43a2de0fe92ffd /bscript | |
| parent | 7847043c0003c18b617c8eb1c8cd5ffddcaabd21 (diff) | |
| download | numpy-d247f01753c64548a08c08892e89808bc6b73d2b.tar.gz | |
ENH: register waf-specific options.
Diffstat (limited to 'bscript')
| -rw-r--r-- | bscript | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -13,7 +13,7 @@ from bento.installed_package_description \ from bento.commands import hooks from bento.commands.extras.waf \ import \ - ConfigureWafContext, BuildWafContext + ConfigureWafContext, BuildWafContext, register_options import waflib @@ -152,6 +152,9 @@ version = "" """, always=True) +@hooks.options +def options(context): + register_options(context) @hooks.startup def startup(context): |
