GitConfigure: no more 'no-symlinks' util/bat.sh, util/mk1mf.pl, util/pl/VC-32.pl, util/pl/unix.pl: - Remove all uses of EXHEADER. That includes removing the use if INC_D and INCO_D. - Replace the check for TEST with a check for [A-Z0-9_]*TEST. Reviewed-by: Rich Salz <rsalz@openssl.org>
		
			
				
	
	
		
			11 lines
		
	
	
		
			248 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			248 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
BRANCH=`git rev-parse --abbrev-ref HEAD`
 | 
						|
 | 
						|
./Configure $@
 | 
						|
make files
 | 
						|
util/mk1mf.pl OUT=out.$BRANCH TMP=tmp.$BRANCH INC=inc.$BRANCH copy > makefile.$BRANCH
 | 
						|
MAKE=make
 | 
						|
which bsdmake > /dev/null && MAKE=bsdmake
 | 
						|
$MAKE -f makefile.$BRANCH init
 |