diff options
author | Ian Lynagh <ian@well-typed.com> | 2012-11-13 14:49:59 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2012-11-13 14:49:59 +0000 |
commit | e86dee338e1f92250332fbf63a12671b533dab79 (patch) | |
tree | a83a1461a035283152e55ebb357c93a02e3a41c0 /ghc.mk | |
parent | 30b7eba2b160b9c18fa155499de527411aa38b45 (diff) | |
download | haskell-e86dee338e1f92250332fbf63a12671b533dab79.tar.gz |
Fix installing on Windows
nus in #ghc ran into a problem where the wrong filepath was being
stripped.
Diffstat (limited to 'ghc.mk')
-rw-r--r-- | ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -839,7 +839,7 @@ define installLibsTo $(RANLIB) $2/`basename $$i` ;; \ *.dll) \ $(call INSTALL_PROGRAM,$(INSTALL_OPTS),$$i,$2) ; \ - $(STRIP_CMD) $2/$$i ;; \ + $(STRIP_CMD) $2/`basename $$i` ;; \ *.so) \ $(call INSTALL_SHLIB,$(INSTALL_OPTS),$$i,$2) ;; \ *.dylib) \ |