diff options
author | Ian Lynagh <igloo@earth.li> | 2007-09-27 13:04:27 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-09-27 13:04:27 +0000 |
commit | bd3922fb7bac1d029d2c8bd311fb9d543120e8ca (patch) | |
tree | 8d5a2caf9b288b5cd81dad29752347097ba4c1bd /libraries | |
parent | 5c93fc95724515e46eb486450b8fc73027c0ce56 (diff) | |
download | haskell-bd3922fb7bac1d029d2c8bd311fb9d543120e8ca.tar.gz |
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.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/Makefile b/libraries/Makefile index 0e93ba0c00..89f10f8380 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" |