From 996d76cbfa4911196ccd9fcd211c23b2c251133a Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 10 Jul 2007 09:43:06 +0000 Subject: [PATCH] Removed / in doc install rule to avoid double-slash (cygwin) --- doc/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index ad8d318..3a1126c 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,4 +1,4 @@ -## $Id: Makefile.am,v 1.39 2007-06-17 07:06:43 adam Exp $ +## $Id: Makefile.am,v 1.40 2007-07-10 09:43:06 adam Exp $ SUBDIRS = common SUFFIXES=.3mp .1 .pdf .tkl .esp .xml @@ -115,9 +115,9 @@ dist-hook: install-data-hook: if test -f index.html; then d=.; else d="$(srcdir)"; fi; \ for p in $$d/*.html; do \ - $(docDATA_INSTALL) $$p $(DESTDIR)/$(docdir); \ + $(docDATA_INSTALL) $$p $(DESTDIR)$(docdir); \ done uninstall-hook: - rm -r $(DESTDIR)/$(docdir) + rm -r $(DESTDIR)$(docdir) -- 1.7.10.4