mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
FIx path on macOS when running from source-tree
This fixes access to local clip library files. Absolute paths are required, otherwise FileSource::find searches the session folder.
This commit is contained in:
parent
f858132a25
commit
413285b713
1 changed files with 2 additions and 0 deletions
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
if which realpath > /dev/null; then
|
||||
TOP=`realpath "$TOP"`
|
||||
elif which readlink > /dev/null; then
|
||||
TOP=`readlink -f "$TOP"`
|
||||
fi
|
||||
|
||||
#export G_DEBUG=fatal_criticals
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue