Make tests work on debian

The regular ldconfig is some bash wrapper over /sbin/ldconfig.real
tingping/wmclass
Alexander Larsson 2017-10-09 15:45:25 +02:00
parent 188b835627
commit 122ab653e8
1 changed files with 5 additions and 1 deletions

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`