1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-18 09:00:07 +02:00
Dmitry Vedenko e83210d45e
Reenables Nyquist for the prebuilt Linux binaries ()
* Reenables Nyquist for the prebuilt Linux binaries

* Allow users setting the AUDACITY_MODULES_PATH env variable.
2021-06-16 19:32:29 +03:00

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" "$@"