* Makefile (sort): New target.

* testsuite/config-guess.data: Sort.
	* testsuite/config-sub.data: Likewise.
This commit is contained in:
Ben Elliston
2019-06-04 09:48:27 +10:00
parent 3f4274dfc2
commit 6fd2f9bf82
4 changed files with 15 additions and 6 deletions

View File

@ -18,3 +18,6 @@ check-sub:
shellcheck:
shellcheck -e SC2006 -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