From: Ian Lynagh Date: Thu, 27 Sep 2007 13:04:27 +0000 (+0000) Subject: html_installed_root shouldn't contain $$pkgid X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=bd3922fb7bac1d029d2c8bd311fb9d543120e8ca html_installed_root shouldn't contain $$pkgid This actually didn't break anything, as the shell expanded $pkgid to the empty string, but it was still wrong. --- diff --git a/libraries/Makefile b/libraries/Makefile index 0e93ba0..89f10f8 100644 --- a/libraries/Makefile +++ b/libraries/Makefile @@ -115,7 +115,7 @@ ilibexecdir = $(libexecdir) idatadir = $(datadir) idocdir = $(docdir)/libraries/$$pkgid ihtmldir = $(htmldir)/libraries/$$pkgid -html_installed_root = $(ihtmldir) +html_installed_root = $(htmldir)/libraries endif ifneq "$(DOING_BIN_DIST)" "YES"