We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9091a4d commit b44c55cCopy full SHA for b44c55c
Makefile
@@ -79,6 +79,7 @@ PLUGINS = YKChorus
79
80
DPF_PATCHES = \
81
patches/dpf/fix-lv2-version-export.patch \
82
+ patches/dpf/fix-generate-ttl.patch \
83
84
PLUGIN_BASE_URI = https://chrisarndt.de/plugins/
85
patches/dpf/fix-generate-ttl.patch
@@ -0,0 +1,13 @@
1
+diff --git a/utils/generate-ttl.sh b/utils/generate-ttl.sh
2
+index 0ddbb1f1..4fd38151 100755
3
+--- a/utils/generate-ttl.sh
4
++++ b/utils/generate-ttl.sh
5
+@@ -17,7 +17,7 @@ fi
6
+ PWD="$(dirname "${0}")"
7
+
8
+ if [ -f "${PWD}/lv2_ttl_generator.exe" ]; then
9
+- GEN="${PWD}/lv2_ttl_generator.exe"
10
++ GEN="$(realpath ${PWD}/lv2_ttl_generator.exe)"
11
+ EXT=dll
12
+ else
13
+ GEN="$(realpath ${PWD}/lv2_ttl_generator)"
0 commit comments