mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 04:26:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			258 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			258 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| # This script can only create a library, not take it apart
 | |
| # again to AR files
 | |
| 
 | |
| case $1 in
 | |
|     -d*|-m*|-t*|-p*|-r*|-x*|x)
 | |
|     echo "$0: can't handle arguments $*"
 | |
|     exit 1;
 | |
|     ;;
 | |
|     -c|c|cr|cru|cu)
 | |
|     shift;
 | |
|     ;;
 | |
| esac
 | |
| 
 | |
| exec mwld -lib -o $*
 | 
