| 
				
			 | 
			
			
				@@ -35,7 +35,7 @@ die() { 
			 | 
		
	
		
			
			| 
				35
			 | 
			
				35
			 | 
			
			
				 build1() { 
			 | 
		
	
		
			
			| 
				36
			 | 
			
				36
			 | 
			
			
				     local srcpath dstpath 
			 | 
		
	
		
			
			| 
				37
			 | 
			
				37
			 | 
			
			
				     srcpath=$1 
			 | 
		
	
		
			
			| 
				38
			 | 
			
				
			 | 
			
			
				-    dstpath=${srcpath%.in} 
			 | 
		
	
		
			
			| 
				
			 | 
			
				38
			 | 
			
			
				+    dstpath=${srcpath%.skel} 
			 | 
		
	
		
			
			| 
				39
			 | 
			
				39
			 | 
			
			
				     perl -pe " 
			 | 
		
	
		
			
			| 
				40
			 | 
			
				40
			 | 
			
			
				         s|__EECC_INI_PATH__|$EECC_INI_PATH_GLOBAL:\\\$HOME/$EECC_INI_PATH_USER|; 
			 | 
		
	
		
			
			| 
				41
			 | 
			
				41
			 | 
			
			
				         s|__VERSION__|$VERSION|; 
			 | 
		
	
	
		
			
			| 
				
			 | 
			
			
				@@ -45,7 +45,7 @@ build1() { 
			 | 
		
	
		
			
			| 
				45
			 | 
			
				45
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				46
			 | 
			
				46
			 | 
			
			
				 build() { 
			 | 
		
	
		
			
			| 
				47
			 | 
			
				47
			 | 
			
			
				     local srcpath 
			 | 
		
	
		
			
			| 
				48
			 | 
			
				
			 | 
			
			
				-    find -type f -name '*.in' \ 
			 | 
		
	
		
			
			| 
				
			 | 
			
				48
			 | 
			
			
				+    find -type f -name '*.skel' \ 
			 | 
		
	
		
			
			| 
				49
			 | 
			
				49
			 | 
			
			
				      | while read srcpath; 
			 | 
		
	
		
			
			| 
				50
			 | 
			
				50
			 | 
			
			
				        do 
			 | 
		
	
		
			
			| 
				51
			 | 
			
				51
			 | 
			
			
				            build1 "$srcpath" 
			 | 
		
	
	
		
			
			| 
				
			 | 
			
			
				@@ -86,7 +86,7 @@ install() { 
			 | 
		
	
		
			
			| 
				86
			 | 
			
				86
			 | 
			
			
				  
			 | 
		
	
		
			
			| 
				87
			 | 
			
				87
			 | 
			
			
				 run_test() { 
			 | 
		
	
		
			
			| 
				88
			 | 
			
				88
			 | 
			
			
				     pushd test 
			 | 
		
	
		
			
			| 
				89
			 | 
			
				
			 | 
			
			
				-    find -maxdepth 1 -type f \! -name '*.in' | while read test; 
			 | 
		
	
		
			
			| 
				
			 | 
			
				89
			 | 
			
			
				+    find -maxdepth 1 -type f \! -name '*.skel' | while read test; 
			 | 
		
	
		
			
			| 
				90
			 | 
			
				90
			 | 
			
			
				     do 
			 | 
		
	
		
			
			| 
				91
			 | 
			
				91
			 | 
			
			
				         chmod 0755 $test 
			 | 
		
	
		
			
			| 
				92
			 | 
			
				92
			 | 
			
			
				         $test || exit $? 
			 |