mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 09:44:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			377 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			377 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
if [ "x$(uname)" = "xOpenBSD" ]; then
 | 
						|
	[ -z "$AUTOMAKE_VERSION" ] && export AUTOMAKE_VERSION=1.15
 | 
						|
	[ -z "$AUTOCONF_VERSION" ] && export AUTOCONF_VERSION=2.69
 | 
						|
fi
 | 
						|
 | 
						|
die()
 | 
						|
{
 | 
						|
    echo "$@" >&2
 | 
						|
    exit 1
 | 
						|
}
 | 
						|
 | 
						|
mkdir -p etc
 | 
						|
aclocal || die "aclocal failed"
 | 
						|
automake --add-missing --force-missing --copy --foreign || die "automake failed"
 | 
						|
autoreconf || die "autoreconf failed"
 |