8 lines
		
	
	
		
			69 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			69 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
if [ ! -d "m4" ]; then
 | 
						|
	mkdir m4
 | 
						|
fi
 | 
						|
 | 
						|
autoreconf --install
 |