diff options
author | David Robillard <d@drobilla.net> | 2011-03-28 04:35:25 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-03-28 04:35:25 +0000 |
commit | e53fd177f853d6bf26d2a3a3411dd243fe1ad828 (patch) | |
tree | 2d3b4abf9633036b38d2121bb167a149c40d0476 /wscript | |
parent | 799264dcf2ced28bb8d2bdb25dcc084887a6c9da (diff) | |
download | lilv-e53fd177f853d6bf26d2a3a3411dd243fe1ad828.tar.gz lilv-e53fd177f853d6bf26d2a3a3411dd243fe1ad828.tar.bz2 lilv-e53fd177f853d6bf26d2a3a3411dd243fe1ad828.zip |
Implement variable expansion on Windows and use standard LV2_PATH
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3132 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -133,7 +133,7 @@ def configure(conf): '~/.lv2', '/boot/common/add-ons/lv2']) elif Options.platform == 'win32': - Options.options.default_lv2_path = 'C:\\\\Program Files\\\\LV2' + Options.options.default_lv2_path = '%APPDATA%\\\\LV2;%PROGRAMFILES%\\\\LV2' else: libdirname = os.path.basename(conf.env['LIBDIR']) Options.options.default_lv2_path = slv2_path_sep.join([ |