mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-01 16:19:43 +02:00
* Reenables Nyquist for the prebuilt Linux binaries * Allow users setting the AUDACITY_MODULES_PATH env variable.
11 lines
275 B
Bash
Executable File
11 lines
275 B
Bash
Executable File
#!/bin/sh
|
|
|
|
lib="${0%/*}/lib/audacity"
|
|
share="${0%/*}/share/audacity"
|
|
|
|
export LD_LIBRARY_PATH="${lib}:${LD_LIBRARY_PATH}"
|
|
export AUDACITY_MODULES_PATH="${AUDACITY_MODULES_PATH}:${lib}/modules"
|
|
export AUDACITY_PATH="${AUDACITY_PATH}:${share}"
|
|
|
|
exec "${0%/*}/bin/audacity" "$@"
|