diff options
author | Ian Lynagh <igloo@earth.li> | 2009-08-02 16:12:37 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-08-02 16:12:37 +0000 |
commit | 4a5569ff37ae771560e56b564f3b15477b828a79 (patch) | |
tree | 8ddeff4260f9cdcb62a527136c3bc804f7ffcb2c /rts | |
parent | 6f476448854b3775b806b6a07a530aa2b70ea02f (diff) | |
download | haskell-4a5569ff37ae771560e56b564f3b15477b828a79.tar.gz |
Fix permissions when installing
Diffstat (limited to 'rts')
-rw-r--r-- | rts/ghc.mk | 4 |
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) # ----------------------------------------------------------------------------- |