diff options
-rw-r--r-- | lv2/core.lv2/meta.ttl | 7 | ||||
-rwxr-xr-x | lv2specgen/lv2specgen.py | 6 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 11 insertions, 4 deletions
diff --git a/lv2/core.lv2/meta.ttl b/lv2/core.lv2/meta.ttl index 556695e..957d1db 100644 --- a/lv2/core.lv2/meta.ttl +++ b/lv2/core.lv2/meta.ttl @@ -34,6 +34,13 @@ THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH R meta:kfoltman , meta:paniq ; doap:release [ + doap:revision "1.18.7" ; + doap:created "2022-07-19" ; + dcs:changeset [ + dcs:item [ + rdfs:label "lv2specgen: Fix installed data paths." + ] + ] , [ doap:revision "1.18.6" ; doap:created "2022-07-07" ; doap:file-release <http://lv2plug.in/spec/lv2-1.18.6.tar.bz2> ; diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index da58e4f..0c5a87d 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -1515,9 +1515,9 @@ if __name__ == "__main__": for d in _data_dirs(): path = os.path.join(d, "lv2specgen") if ( - os.path.exists(os.path.join(d, "template.html")) - and os.path.exists(os.path.join(d, "style.css")) - and os.path.exists(os.path.join(d, "pygments.css")) + os.path.exists(os.path.join(path, "template.html")) + and os.path.exists(os.path.join(path, "style.css")) + and os.path.exists(os.path.join(path, "pygments.css")) ): data_dir = path break diff --git a/meson.build b/meson.build index 14f9876..67a4ccc 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ # SPDX-License-Identifier: CC0-1.0 OR ISC project('lv2', ['c'], - version: '1.18.6', + version: '1.18.7', license: 'ISC', meson_version: '>= 0.56.0', default_options: [ |