mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-11-04 07:59:43 +01: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.
 |