diff options
author | David Robillard <d@drobilla.net> | 2010-10-06 03:40:43 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-10-06 03:40:43 +0000 |
commit | 15e85e0f366af661fae13e03a51b48f21b5e426c (patch) | |
tree | 74b58e24e4d53e10b66f6cbdf9b4af8925c3acab /wscript | |
parent | a46c4e1cdaf4254f96c52d059ea143c022703539 (diff) | |
download | lv2-15e85e0f366af661fae13e03a51b48f21b5e426c.tar.xz |
Remove extraneous "./" (tidies up and aligns ./waf install output).
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -84,12 +84,12 @@ def build(bld): variables ''' for e in ext.split(): - build_extension(bld, e, './ext') + build_extension(bld, e, 'ext') extensions = ''' ui units ''' for e in extensions.split(): - build_extension(bld, e, './extensions') + build_extension(bld, e, 'extensions') |