mirror of
https://github.com/radareorg/radare2
synced 2026-08-22 20:23:32 -04:00
Do not run sys/ldconfig on Android ##build
This commit is contained in:
parent
74de15a4bb
commit
eda2a09a0e
1 changed files with 6 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue