mirror of
				https://github.com/tiagovignatti/intel-gpu-tools.git
				synced 2025-11-04 12:07:12 +00:00 
			
		
		
		
	The current code is a noop. Use the same configuration as all the other xorg modules. This will change in the future but it is less confusing when all modules behave the same way. Note that these rules apply to building from a tarball only. Restore autogen.sh to be identical in all xorg modules. Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
		
			
				
	
	
		
			13 lines
		
	
	
		
			195 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			195 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#! /bin/sh
 | 
						|
 | 
						|
srcdir=`dirname $0`
 | 
						|
test -z "$srcdir" && srcdir=.
 | 
						|
 | 
						|
ORIGDIR=`pwd`
 | 
						|
cd $srcdir
 | 
						|
 | 
						|
autoreconf -v --install || exit 1
 | 
						|
cd $ORIGDIR || exit $?
 | 
						|
 | 
						|
$srcdir/configure --enable-maintainer-mode "$@"
 |