From 23c144fe3f3597fbd9b25d84311b5ecf6015974b Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Thu, 6 Oct 2011 10:17:36 +0200 Subject: [PATCH] Don't count files in sysroot/ when counting lines. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index aaa37d7a..c6cd0621 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,7 @@ $(INITRD): suball # Statistics linecount: - wc -l `find | grep -E '\.h$$|\.c$$|\.cpp$$|\.s$$|\.asm$$|Makefile$$'` | sort -n + wc -l `find | grep -E '\.h$$|\.c$$|\.cpp$$|\.s$$|\.asm$$|Makefile$$' | grep -v sysroot` | sort -n # Local machine