summaryrefslogtreecommitdiff
path: root/rts
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2009-08-02 16:12:37 +0000
committerIan Lynagh <igloo@earth.li>2009-08-02 16:12:37 +0000
commit4a5569ff37ae771560e56b564f3b15477b828a79 (patch)
tree8ddeff4260f9cdcb62a527136c3bc804f7ffcb2c /rts
parent6f476448854b3775b806b6a07a530aa2b70ea02f (diff)
downloadhaskell-4a5569ff37ae771560e56b564f3b15477b828a79.tar.gz
Fix permissions when installing
Diffstat (limited to 'rts')
-rw-r--r--rts/ghc.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/ghc.mk b/rts/ghc.mk
index a14da3bb28..a7bfd12e58 100644
--- a/rts/ghc.mk
+++ b/rts/ghc.mk
@@ -368,8 +368,8 @@ install : install_rts
.PHONY: install_rts
install_rts:
- "$(MKDIRHIER)" $(DESTDIR)$(libdir)
- "$(MKDIRHIER)" $(DESTDIR)$(libdir)/include
+ $(INSTALL_DIR) $(DESTDIR)$(libdir)
+ $(INSTALL_DIR) $(DESTDIR)$(libdir)/include
"$(CP)" $(ALL_RTS_LIBS) $(DESTDIR)$(libdir)
# -----------------------------------------------------------------------------