diff options
author | David Robillard <d@drobilla.net> | 2010-10-28 21:51:04 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-10-28 21:51:04 +0000 |
commit | 0acc652a6043702ee9d17d7afe709e822ee5f165 (patch) | |
tree | dd382b37d4b0b9646246902d03db622c5f9cbe2a /core.lv2 | |
parent | 67e78ea049d9f58c45bc628408dd63b6ebc9ff72 (diff) | |
download | lv2-0acc652a6043702ee9d17d7afe709e822ee5f165.tar.xz |
Fix Mac OS X bundle path.
Diffstat (limited to 'core.lv2')
-rwxr-xr-x | core.lv2/lv2config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core.lv2/lv2config b/core.lv2/lv2config index d0a3d3b..5f43716 100755 --- a/core.lv2/lv2config +++ b/core.lv2/lv2config @@ -159,7 +159,7 @@ if __name__ == "__main__": if len(args) == 0: build_tree('/usr/local/lib/lv2', '/usr/local/include/lv2') build_tree('/usr/lib/lv2', '/usr/include/lv2') - build_tree('/Library/Plug-Ins/Audio/LV2', '/Developer/Headers/lv2') + build_tree('/Library/Audio/Plug-Ins/LV2', '/Developer/Headers/lv2') elif '--help' in args or '-h' in args: __usage() |