-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add patch for DPF generate-ttl script to fix windows cross-compi…
…lation build Signed-off-by: Christopher Arndt <[email protected]>
- Loading branch information
1 parent
9091a4d
commit b44c55c
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/utils/generate-ttl.sh b/utils/generate-ttl.sh | ||
index 0ddbb1f1..4fd38151 100755 | ||
--- a/utils/generate-ttl.sh | ||
+++ b/utils/generate-ttl.sh | ||
@@ -17,7 +17,7 @@ fi | ||
PWD="$(dirname "${0}")" | ||
|
||
if [ -f "${PWD}/lv2_ttl_generator.exe" ]; then | ||
- GEN="${PWD}/lv2_ttl_generator.exe" | ||
+ GEN="$(realpath ${PWD}/lv2_ttl_generator.exe)" | ||
EXT=dll | ||
else | ||
GEN="$(realpath ${PWD}/lv2_ttl_generator)" |