mirror of
				https://github.com/tiagovignatti/intel-gpu-tools.git
				synced 2025-11-04 12:07:12 +00:00 
			
		
		
		
	This does not bring us anything these days, not using the macro at all is the same thing as having it always on. See this discussion: https://www.redhat.com/archives/virt-tools-list/2010-October/msg00049.html Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			170 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			170 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 "$@"
 |