mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
Fix macOS compatibiliy
readlink -f option requires recent macOS 12.6
This commit is contained in:
parent
ae6bf4bc7d
commit
3b2eb7507b
1 changed files with 1 additions and 1 deletions
|
|
@ -3,7 +3,7 @@
|
||||||
if which realpath > /dev/null; then
|
if which realpath > /dev/null; then
|
||||||
TOP=`realpath "$TOP"`
|
TOP=`realpath "$TOP"`
|
||||||
elif which readlink > /dev/null; then
|
elif which readlink > /dev/null; then
|
||||||
TOP=`readlink -f "$TOP"`
|
TOP=`(cd "$TOP"; pwd)`
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#export G_DEBUG=fatal_criticals
|
#export G_DEBUG=fatal_criticals
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue