From eca6246684e21b483455037009c19aaa484cab46 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Wed, 25 Oct 2017 13:21:00 +0200 Subject: [PATCH] Use portable sort in linecount target. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 26f86e82..5e058a10 100644 --- a/Makefile +++ b/Makefile @@ -434,4 +434,4 @@ run-virtualbox-debug: sortix.iso # Statistics .PHONY: linecount linecount: - wc -l `git ls-files | grep -Ev '^libm/man/.*$$'` | sort -h + wc -l `git ls-files | grep -Ev '^libm/man/.*$$'` | LC_ALL=C sort