mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-28 15:41:38 +00:00
febace8033
- Fixes non-standard path installs on GNU/Linux
9 lines
173 B
Bash
Executable File
9 lines
173 B
Bash
Executable File
#!/bin/sh
|
|
LD=/etc/ld.so.conf.d
|
|
type ldconfig > /dev/null 2>&1
|
|
if [ $? = 0 ]; then
|
|
mkdir -p $LD
|
|
awk -F= '/^LIBDIR/{print $2}' config-user.mk > $LD/radare.conf
|
|
ldconfig
|
|
fi
|