summaryrefslogtreecommitdiff
path: root/rules/build-prog.mk
diff options
context:
space:
mode:
authorIan Lynagh <ian@well-typed.com>2012-09-27 14:35:05 +0100
committerIan Lynagh <ian@well-typed.com>2012-10-01 21:36:53 +0100
commitd106284b4018efeb1f3cf2249a4a713539150376 (patch)
tree2bceded334cf8aa6d9bd8efe08910d10fbec4d62 /rules/build-prog.mk
parent29f6b87fab42f94b8b5955350f5df800e2dd7b30 (diff)
downloadhaskell-d106284b4018efeb1f3cf2249a4a713539150376.tar.gz
Put libexec binaries in lib/bin/ rather than just lib/
Some binaries are installed in lib/, so if we wanted them to have a shell wrapper then under the old scheme both the binary and the wrapper would be installed under lib/. Now the binary is put under lib/bin/, leaving lib/ for the wrapper.
Diffstat (limited to 'rules/build-prog.mk')
-rw-r--r--rules/build-prog.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/build-prog.mk b/rules/build-prog.mk
index 2a76943301..5e8b4ba437 100644
--- a/rules/build-prog.mk
+++ b/rules/build-prog.mk
@@ -67,7 +67,7 @@ endif
else
# Where do we install the inplace version?
ifeq "$$($1_$2_SHELL_WRAPPER) $$(Windows)" "YES NO"
-$1_$2_INPLACE = $$(INPLACE_LIB)/$$($1_$2_PROG)
+$1_$2_INPLACE = $$(INPLACE_LIB)/bin/$$($1_$2_PROG)
else
ifeq "$$($1_$2_TOPDIR)" "YES"
$1_$2_INPLACE = $$(INPLACE_TOPDIR)/$$($1_$2_PROG)