mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
9 lines
307 B
Text
9 lines
307 B
Text
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
# NOTE: the use of PREFIX is incorrect - it should be INSTALL_PREFIX,
|
||
|
|
# but somehow scons puts leading /'s on INSTALL_PREFIX and that causes
|
||
|
|
# wine to be unable to find the .exe.so file
|
||
|
|
|
||
|
|
LD_LIBRARY_PATH=%PREFIX%/lib/ardour2:$LD_LIBRARY_PATH exec wine %PREFIX%/lib/ardour2/ardour_vst.exe.so "$@"
|
||
|
|
|