https://github.com/git/git
Revision 52b195f2b8e0d8c9d4583aab44846698ed3149f2 authored by Junio C Hamano on 14 December 2011, 05:21:30 UTC, committed by Junio C Hamano on 14 December 2011, 05:21:30 UTC
* jk/maint-fetch-status-table:
  fetch: create status table using strbuf
2 parent s 43176d1 + 5914f2d
Raw File
Tip revision: 52b195f2b8e0d8c9d4583aab44846698ed3149f2 authored by Junio C Hamano on 14 December 2011, 05:21:30 UTC
Merge branch 'jk/maint-fetch-status-table' into maint-1.7.6
Tip revision: 52b195f
check-builtins.sh
#!/bin/sh

{
	cat <<\EOF
sayIt:
	$(foreach b,$(BUILT_INS),echo XXX $b YYY;)
EOF
	cat Makefile
} |
make -f - sayIt 2>/dev/null |
sed -n -e 's/.*XXX \(.*\) YYY.*/\1/p' |
sort |
{
    bad=0
    while read builtin
    do
	base=`expr "$builtin" : 'git-\(.*\)'`
	x=`sed -ne 's/.*{ "'$base'", \(cmd_[^, ]*\).*/'$base'	\1/p' git.c`
	if test -z "$x"
	then
		echo "$base is builtin but not listed in git.c command list"
		bad=1
	fi
	for sfx in sh perl py
	do
		if test -f "$builtin.$sfx"
		then
			echo "$base is builtin but $builtin.$sfx still exists"
			bad=1
		fi
	done
    done
    exit $bad
}
back to top