lazarus/tools/check_ide_libs.sh
mattias 9f07a137d7 set +x attribute for scripts
git-svn-id: trunk@7434 -
2005-07-27 09:18:33 +00:00

13 lines
207 B
Bash
Executable File

#!/bin/bash
set -e
set -x
GlibCount=`ldd lazarus | grep '\blibglib-[12]' | wc -l | sed 's/ //g'`
if [ "x$GlibCount" = "x2" ]; then
echo "lazarus.pp(1) fatal: lib glib is used twice"
exit -1
fi
# end.