[Tinyx-devel] [PATCH] BUILD: Missing \ on clean target
Status: Planning
Brought to you by:
davidcohen
From: David C. <da...@gm...> - 2008-01-13 15:54:00
|
This patch adds missing \ on clean target. Whithout it, the last line on this target is not executed. Signed-off-by: David Cohen <da...@gm...> --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 386622d..3618ec0 100644 --- a/Makefile +++ b/Makefile @@ -74,7 +74,7 @@ clean: cleanobjs="$$cleanobjs $$dir*.o"; \ done; \ echo "rm -f $$cleanobjs include/asm build/tinyx.hex build/tinyx.elf build/tinyx.deps"; \ - rm -f include/asm/arch + rm -f include/asm/arch \ rm -f $$cleanobjs include/asm build/tinyx.hex build/tinyx.elf build/tinyx.deps; -- 1.5.3.7 |