From bd3922fb7bac1d029d2c8bd311fb9d543120e8ca Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Thu, 27 Sep 2007 13:04:27 +0000 Subject: [PATCH] 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. --- libraries/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 1.7.10.4