From b3327c558d53287b39a4040a1d1814e30d137cf9 Mon Sep 17 00:00:00 2001 From: Salvatore Bonaccorso Date: Fri, 24 Jul 2015 10:19:24 +0200 Subject: [PATCH] Properly quote argument to echo containging # in Makefile lex.yy.c did not include config.h since the argument to echo was treated as comment, so just an empty line was prepended. Closes: #15 --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 7b8eaf4..c2656df 100644 --- a/src/Makefile +++ b/src/Makefile @@ -82,7 +82,7 @@ parser.c parser.h: parser.y boxes.h regexp/regexp.h lex.yy.c: lexer.l boxes.h $(LEX) -t lexer.l > lexer.tmp.c - echo #include "config.h" > lex.yy.c + echo '#include "config.h"' > lex.yy.c cat lexer.tmp.c >> lex.yy.c rm lexer.tmp.c