 3f145a4fe3
			
		
	
	3f145a4fe3
	
	
	
		
			
			We have multiple scripts that generate headers from other data. All of these scripts have the assumption built-in that they are executed in the current source directory, which makes them a bit unwieldy to use during out-of-tree builds. Refactor them to instead take the source directory as well as the output file as arguments. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
		
			
				
	
	
		
			32 lines
		
	
	
		
			579 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			579 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| SOURCE_DIR="$1"
 | |
| OUTPUT="$2"
 | |
| 
 | |
| if test -z "$SOURCE_DIR" || ! test -d "$SOURCE_DIR" || test -z "$OUTPUT"
 | |
| then
 | |
| 	echo >&2 "USAGE: $0 <SOURCE_DIR> <OUTPUT>"
 | |
| 	exit 1
 | |
| fi
 | |
| 
 | |
| print_config_list () {
 | |
| 	cat <<EOF
 | |
| static const char *config_name_list[] = {
 | |
| EOF
 | |
| 	grep -h '^[a-zA-Z].*\..*::$' "$SOURCE_DIR"/Documentation/*config.txt "$SOURCE_DIR"/Documentation/config/*.txt |
 | |
| 	sed '/deprecated/d; s/::$//; s/,  */\n/g' |
 | |
| 	sort |
 | |
| 	sed 's/^.*$/	"&",/'
 | |
| 	cat <<EOF
 | |
| 	NULL,
 | |
| };
 | |
| EOF
 | |
| }
 | |
| 
 | |
| {
 | |
| 	echo "/* Automatically generated by generate-configlist.sh */"
 | |
| 	echo
 | |
| 	echo
 | |
| 	print_config_list
 | |
| } >"$OUTPUT"
 |