From cc00f9aa9c877502e958da73f23ce51cbdf9420a Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Wed, 23 Jul 2014 15:35:36 +0100 Subject: [PATCH] Tweak "mkws-html-includes" rule to omit NUL characters. --- tools/htdocs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/htdocs/Makefile b/tools/htdocs/Makefile index f0a7291..420bb49 100644 --- a/tools/htdocs/Makefile +++ b/tools/htdocs/Makefile @@ -97,7 +97,7 @@ mkws.js: $(COMPONENTS) Makefile mkws-html-includes: echo $(COMPONENTS) | perl -npe "s,${SRC},,g; s/\s+/\0/g" | \ - perl -n0e 'print qq{ \n}' + perl -n0e 'chomp(); print qq{ \n}' distclean: clean @echo "(No need for distclean, 'make clean' is fine)" -- 1.7.10.4