Robin Gareus
1801c33ee4
This fixes an issue with inconsistent startup scripts. LD_LIBRARY_PATH was incomplete since at least 5.0 (5.12 is broken, too) likewise ctrl surface path were outdated, etc. Prefer to use `gtk2_ardour/ardev_common.sh.in` as the central point to define environment variables for running Ardour from the source-tree. Other start scripts e.g. `vst/ardevst` already did this.
6 lines
157 B
Bash
Executable File
6 lines
157 B
Bash
Executable File
#!/bin/sh
|
|
TOP=`dirname "$0"`/..
|
|
. $TOP/build/gtk2_ardour/ardev_common_waf.sh
|
|
export UBUNTU_MENUPROXY=""
|
|
exec $TOP/build/headless/hardour-$ARDOURVERSION "$@"
|