diff options
author | Timo Mueller <timo.mueller@bmw-carit.de> | 2012-12-06 10:19:51 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-14 17:22:41 +0000 |
commit | fcb3952ef6494b24cb9c822dc251b8f0affbe765 (patch) | |
tree | d545675d5b816b31e0460214e695fd7e209327bf /documentation | |
parent | 6c057d084158fd7ccf170342c902d499ac5ba7fb (diff) | |
download | poky-fcb3952ef6494b24cb9c822dc251b8f0affbe765.tar.gz |
documentation/Makefile: Fix copying of figures folder
When calling the eclipse target twice without calling clean in between
the figures folder was copied as a subfolder of the existing figures
folder. This patch fixes the copy command to correctly copy the
figures folder.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/Makefile b/documentation/Makefile index 2807f12bae..2668f31f0b 100644 --- a/documentation/Makefile +++ b/documentation/Makefile | |||
@@ -337,7 +337,7 @@ else | |||
337 | -o eclipse/$(DOC).html \ | 337 | -o eclipse/$(DOC).html \ |
338 | $(DOC)-eclipse-customization.xsl $(DOC).xml && \ | 338 | $(DOC)-eclipse-customization.xsl $(DOC).xml && \ |
339 | mv eclipse/toc.xml eclipse/$(DOC)-toc.xml && \ | 339 | mv eclipse/toc.xml eclipse/$(DOC)-toc.xml && \ |
340 | cp -rf $(FIGURES) eclipse/$(BASE_DIR)/$(FIGURES) && \ | 340 | cp -rf $(FIGURES) eclipse/$(BASE_DIR) && \ |
341 | cd ..; | 341 | cd ..; |
342 | 342 | ||
343 | $(call modify-eclipse) | 343 | $(call modify-eclipse) |