* top/maint.mk ($(sc_z_rules_)): Remove the ":", "sc_" prefix and
" done" from each line that reports a syntax-check test duration.
+2010-04-12 Jim Meyering <meyering@redhat.com>
+
+ maint.mk: generate more concise timing data for syntax-check rules
+ * top/maint.mk ($(sc_z_rules_)): Remove the ":", "sc_" prefix and
+ " done" from each line that reports a syntax-check test duration.
+
2010-04-12 Andreas Gruenbacher <agruen@suse.de>
git-version-gen: use "git update-index..." rather than "git status"
start=$$(cat .sc-start-$*); \
rm -f .sc-start-$*; \
awk -v s=$$start -v e=$$end \
- 'END {printf "%.2f: $* done\n", e - s}' < /dev/null
+ 'END {printf "%.2f $(patsubst sc_%,%,$*)\n", e - s}' < /dev/null
# The patsubst here is to replace each sc_% rule with its sc_%.z wrapper
# that computes and prints elapsed time.