From ac1981e41adc00b1c52995ddb874d50ed1ede73d Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Thu, 6 Dec 2012 05:44:23 -0600 Subject: [PATCH] documentation: Makefile - Added tarfile to the clean target Clean operation should also remove the *.tgz file. I added code so that if the user makes the file and specifies the 'clean' target, the generated tarfile is removed. (From yocto-docs rev: 565c147eaa169e287278b87e9bba2979a44be9d5) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/Makefile b/documentation/Makefile index 6cac5caeaa..6775120fc7 100644 --- a/documentation/Makefile +++ b/documentation/Makefile @@ -309,4 +309,4 @@ publish: fi clean: - rm -f $(MANUALS) + rm -rf $(MANUALS); rm $(DOC)/$(DOC).tgz;