From 085cb439cd2a2ba828b45182dff629bd4f51d308 Mon Sep 17 00:00:00 2001 From: simonmar Date: Fri, 15 Jun 2001 11:29:47 +0000 Subject: [PATCH 1/1] [project @ 2001-06-15 11:29:47 by simonmar] override $(libexecdir) to be $(libdir)/bin (the installation machinery will have to catch up with this too). --- ghc/mk/boilerplate.mk | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ghc/mk/boilerplate.mk b/ghc/mk/boilerplate.mk index 70f40c5..05e77e2 100644 --- a/ghc/mk/boilerplate.mk +++ b/ghc/mk/boilerplate.mk @@ -35,5 +35,6 @@ TOP:=$(GHC_TOP) # Override $(libdir) and $(datadir), so GHC stuff gets installed # into a suitable subdirectory of $(libdir). -libdir := $(libdir)/$(ProjectNameShort)-$(ProjectVersion) -datadir := $(datadir)/$(ProjectNameShort)-$(ProjectVersion) +libdir := $(libdir)/$(ProjectNameShort)-$(ProjectVersion) +libexecdir := $(libdir)/bin +datadir := $(datadir)/$(ProjectNameShort)-$(ProjectVersion) -- 1.7.10.4