mirror of
				https://gitlab.freedesktop.org/wayland/wayland.git
				synced 2025-11-03 09:01:42 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			200 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			200 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#! /bin/sh
 | 
						|
 | 
						|
test -n "$srcdir" || srcdir=`dirname "$0"`
 | 
						|
test -n "$srcdir" || srcdir=.
 | 
						|
(
 | 
						|
  cd "$srcdir" &&
 | 
						|
  autoreconf --force -v --install
 | 
						|
) || exit
 | 
						|
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
 |