From: Adam Dickmeiss Date: Tue, 10 Jul 2007 09:43:06 +0000 (+0000) Subject: Removed / in doc install rule to avoid double-slash (cygwin) X-Git-Tag: METAPROXY.1.0.12~6 X-Git-Url: http://lists.indexdata.com/cgi-bin?a=commitdiff_plain;h=996d76cbfa4911196ccd9fcd211c23b2c251133a;p=metaproxy-moved-to-github.git Removed / in doc install rule to avoid double-slash (cygwin) --- 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)