summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2012-12-06 06:27:48 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-12-07 17:13:17 +0000
commitfdacedcafde3bcbcf6ef26e482a4fd3d638acf85 (patch)
tree9f35233f9c32f4c4974b405e5f69bc8ad9ddfa34
parent24af2693697ac38070f9702a9e6c4527989379ba (diff)
downloadpoky-fdacedcafde3bcbcf6ef26e482a4fd3d638acf85.tar.gz
documentation: Makefile - Remove tarfile for clean target.
When a user makes a manual and specifies the 'clean' target the *.tgz file should be removed also. Added code to accomplish this. (From yocto-docs rev: 005c86303089d2ccc646bc70700a6084de887996) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--documentation/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/Makefile b/documentation/Makefile
index 0218211313..de345c1596 100644
--- a/documentation/Makefile
+++ b/documentation/Makefile
@@ -308,4 +308,4 @@ publish:
308 fi 308 fi
309 309
310clean: 310clean:
311 rm -f $(MANUALS) 311 rm -f $(MANUALS); rm $(DOC)/$(DOC).*tgz;