mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
16 lines
357 B
Text
Executable file
16 lines
357 B
Text
Executable file
STATIC_LIBS=`grep "^ \+/.*\.a .$" server/Makefile.am | sed "s/ .$//"`
|
|
|
|
for lib in $STATIC_LIBS; do
|
|
#echo LIB $lib
|
|
dylib=`dirname $lib`/`basename $lib .a`.so
|
|
if [ -f $lib ] && [ -f $dylib ]; then
|
|
dylib=`readlink -f $dylib`
|
|
if [ $lib -ot $dylib ]; then
|
|
echo $lib is out of date.
|
|
ls -l $lib $dylib
|
|
true
|
|
fi
|
|
else
|
|
echo Missing: $lib
|
|
fi
|
|
done
|