summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <gp@n-dimensional.de>2002-08-11 21:37:24 +0000
committerHans Ulrich Niedermann <gp@n-dimensional.de>2002-08-11 21:37:24 +0000
commit5f60cb4996d7b1afd781bac6fbb634de7e443c67 (patch)
tree0fb3ec0c5b17be8e21bbd0a50d9594cf735df5ad /doc
parent4ef9c7f8778a9d2bf59c30f0a9632a1c21a986b3 (diff)
downloadlibgphoto2-5f60cb4996d7b1afd781bac6fbb634de7e443c67.tar.gz
dont use $(AMTAR)
git-svn-id: https://svn.code.sf.net/p/gphoto/code/trunk/libgphoto2@5001 67ed7778-7388-44ab-90cf-0a291f65f57c
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.am9
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index cbad38097..73ee03818 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -110,13 +110,12 @@ if ENABLE_FIGURES
endif
# copy HTML manual to distribution
-# FIXME: Use $(INSTALL_DATA) instead of $(AMTAR)
dist_hook_manual = dist-hook-manual
dist-hook-manual: manual figures-stamp
- $(AMTAR) cf - manual/*.html | (cd $(distdir); $(AMTAR) xvf -)
-if ENABLE_FIGURES
- $(AMTAR) cf - figures/*.png | (cd $(distdir)/manual/; $(AMTAR) xvf -)
-endif
+ $(INSTALL_DATA) manual/*.html $(distdir)/
+ if ENABLE_FIGURES
+ $(INSTALL_DATA) figures/*.png $(distdir)/manual/
+ endif
endif
########################################################################