Make tests work on debian

The regular ldconfig is some bash wrapper over /sbin/ldconfig.real
This commit is contained in:
Alexander Larsson
2017-10-09 15:45:25 +02:00
parent d952cdab9b
commit e7e1331653

View File

@@ -25,7 +25,11 @@ mkdir -p ${DIR}/usr/bin
mkdir -p ${DIR}/usr/lib
ln -s ../lib ${DIR}/usr/lib64
ln -s ../lib ${DIR}/usr/lib32
cp `which ldconfig` ${DIR}/usr/bin
if test -f /sbin/ldconfig.real; then
cp /sbin/ldconfig.real ${DIR}/usr/bin/ldconfig
else
cp `which ldconfig` ${DIR}/usr/bin
fi
T=`mktemp`
for i in $@; do
I=`which $i`