mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 00:18:08 +02:00
13 lines
207 B
Bash
Executable File
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.
|