From d9135e872bf72aca7b9e9ae3ec77e35485e917e2 Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Mon, 25 Jul 2005 23:36:58 +0000 Subject: [PATCH] In the final install, copy the documentation .pdf/.ps to files with a bit of a more sensible name. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4262 --- docs/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Makefile.am b/docs/Makefile.am index 3935bc88fc..c15e45184e 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -101,11 +101,11 @@ install-data-hook: ifeq ($(BUILD_ALL_DOCS),yes) if test -r index.pdf ; then \ mkdir -p $(DESTDIR)$(datadir)/doc/valgrind/; \ - cp index.pdf $(DESTDIR)$(datadir)/doc/valgrind/; \ + cp index.pdf $(DESTDIR)$(datadir)/doc/valgrind/valgrind_manual.pdf; \ fi if test -r index.ps ; then \ mkdir -p $(DESTDIR)$(datadir)/doc/valgrind/; \ - cp index.ps $(DESTDIR)$(datadir)/doc/valgrind/; \ + cp index.ps $(DESTDIR)$(datadir)/doc/valgrind/valgrind_manual.ps; \ fi endif -- 2.47.3