mirror of
https://github.com/radareorg/radare2.git
synced 2026-04-14 22:05:32 +02:00
Do not run sys/ldconfig on Android ##build
This commit is contained in:
@@ -1,4 +1,10 @@
|
||||
#!/bin/sh
|
||||
if [ "$(uname)" != Linux ]; then
|
||||
exit 0
|
||||
fi
|
||||
if [ "$(uname -o)" = Android ]; then
|
||||
exit 0
|
||||
fi
|
||||
LD=/etc/ld.so.conf.d
|
||||
if test -w $LD ; then
|
||||
if type ldconfig > /dev/null 2>&1 ; then
|
||||
|
||||
Reference in New Issue
Block a user