mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 20:36:16 +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 "$@"
 |