mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 10:56:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			173 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			173 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| case $(uname -s) in
 | |
| FreeBSD)
 | |
|   ACLOCAL_ARGS="$ACLOCAL_ARGS -I /usr/local/share/aclocal/"
 | |
|   ;;
 | |
| esac
 | |
| 
 | |
| mkdir -p m4
 | |
| 
 | |
| ${AUTORECONF:-autoreconf} --force --install "$@"
 | 
