mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-25 14:47:20 +01:00
don't trip over missing nm tool
This commit is contained in:
parent
6054d72c1b
commit
53f1981eff
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ fi
|
|||
|
||||
GLIB=$(ldd @LIBDIR@/ardour-@VERSION@ 2> /dev/null | grep glib-2.0 | sed 's/.*=> \([^ ]*\) .*/\1/')
|
||||
|
||||
if [ "$GLIB" = "" ]; then
|
||||
if ! type nm >/dev/null 2>&1 || [ "$GLIB" = "" ]; then
|
||||
echo "WARNING: Could not check your glib-2.0 for mutex locking atomic operations."
|
||||
echo ""
|
||||
elif [ $(nm -D --radix=dec --defined-only -S $GLIB | grep -w g_atomic_int_add | cut -d ' ' -f 2) -gt 32 ]; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue