diff options
author | David Robillard <d@drobilla.net> | 2011-03-03 01:43:07 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-03-03 01:43:07 +0000 |
commit | e3597cf463a427244bc3c67f032389cfbcb695ec (patch) | |
tree | 03aa0a36dc65ac39a65ff3f6f6826b8461eb8ec3 /wscript | |
parent | 73f2d9ad73170c6d713c6b08ee000e741838a543 (diff) | |
download | lv2-e3597cf463a427244bc3c67f032389cfbcb695ec.tar.xz |
Fix warning about running lv2config to actually mention lv2config (not ldconfig).
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -77,11 +77,7 @@ def build(bld): def warn_lv2config(ctx): if ctx.cmd == 'install': - Logs.pprint('BOLD', ''' -*************************************************************************** -* LV2 Extension(s) Installed * -* You need to run lv2config to compile against extension headers * -* e.g. $ sudo ldconfig * -* (If you are packaging, extension packages MUST do this on installation) * -*************************************************************************** + Logs.warn(''' + * LV2 Extension(s) Installed + * You need to run lv2config to update extension headers ''') |