From 9df0483bb754290174d73b959eacf63c680d0a72 Mon Sep 17 00:00:00 2001 From: David Levine Date: Thu, 26 Jan 2012 20:04:33 -0600 Subject: [PATCH] Removed slash in front of $(man5dir) of install-data-hook rule so that it now works on Cygwin. --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 820ec74..bb22f5a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -365,8 +365,8 @@ install-exec-hook: fi install-data-hook: - rm -f $(DESTDIR)/$(man5dir)/mh_profile.5 - ln $(DESTDIR)/$(man5dir)/mh-profile.5 $(DESTDIR)/$(man5dir)/mh_profile.5 + rm -f $(DESTDIR)$(man5dir)/mh_profile.5 + ln $(DESTDIR)$(man5dir)/mh-profile.5 $(DESTDIR)$(man5dir)/mh_profile.5 ## ## Make sure we remove those links at uninstall time ## -- 1.7.10.4