mirror of
git://git.savannah.gnu.org/config.git
synced 2025-07-11 05:33:40 +12:00
testsuite: make config data sorted using "make sort"
* Makefile (sort): Add dependencies, sort in C locale using "sort -u". * testsuite/config-guess.data: Make the data sorted. * testsuite/config-sub.data: Likewise.
This commit is contained in:
5
Makefile
5
Makefile
@ -15,8 +15,9 @@ check-sub:
|
||||
shellcheck:
|
||||
shellcheck -f gcc config.guess config.sub testsuite/*.sh
|
||||
|
||||
sort:
|
||||
for f in config-guess.data config-sub.data ; do sort testsuite/$$f -o testsuite/$$f; done
|
||||
.PHONY: sort
|
||||
sort: testsuite/config-guess.data testsuite/config-sub.data
|
||||
for f in $^; do LC_ALL=C sort -u $$f -o $$f; done
|
||||
|
||||
doc/%.1: % doc/%.x
|
||||
$(HELP2MAN) --include=doc/$<.x --output=$@ ./$<
|
||||
|
Reference in New Issue
Block a user