Files correlati : Commento : Spostamento in libraries delle librerie esterne di Campo per una maggiore pulizia e organizzazione git-svn-id: svn://10.65.10.50/branches/R_10_00@24150 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			16 lines
		
	
	
		
			337 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			337 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| CONFIG_SHELL=/bin/sh
 | |
| export CONFIG_SHELL
 | |
| PREFIX=/usr/i586-mingw32msvc
 | |
| TARGET=i586-mingw32msvc
 | |
| PATH="$PREFIX/bin:$PREFIX/$TARGET/bin:$PATH"
 | |
| export PATH
 | |
| cache=cross-config.cache
 | |
| sh configure --cache-file="$cache" --prefix=$PREFIX \
 | |
| 	--target=$TARGET --host=$TARGET --build=i386-linux \
 | |
| 	$*
 | |
| status=$?
 | |
| rm -f "$cache"
 | |
| exit $status
 |