summaryrefslogtreecommitdiff
path: root/rts/ghc.mk
diff options
context:
space:
mode:
authorIan Lynagh <ian@well-typed.com>2013-03-24 17:29:30 +0000
committerIan Lynagh <ian@well-typed.com>2013-03-24 17:29:30 +0000
commit8575d01b4205b4545c54f9f1ba1d993a87bac72c (patch)
tree93b40c0ca9a1606b2e9ac355a1006c61dc553f4e /rts/ghc.mk
parentb30015e78db99d79cdb48c6c810e3fd49573c5cd (diff)
downloadhaskell-8575d01b4205b4545c54f9f1ba1d993a87bac72c.tar.gz
Fix the names of the libffi archives
Fixes a bug which meant that they weren't getting installed.
Diffstat (limited to 'rts/ghc.mk')
-rw-r--r--rts/ghc.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/ghc.mk b/rts/ghc.mk
index 7324ba07a7..f940e31f42 100644
--- a/rts/ghc.mk
+++ b/rts/ghc.mk
@@ -548,7 +548,7 @@ rts/package.conf.inplace : $(includes_H_CONFIG) $(includes_H_PLATFORM)
RTS_INSTALL_LIBS += $(ALL_RTS_LIBS)
ifneq "$(UseSystemLibFFI)" "YES"
RTS_INSTALL_LIBS += $(wildcard rts/dist/build/libffi$(soext)*)
-RTS_INSTALL_LIBS += $(foreach w,$(filter-out dyn,$(rts_WAYS)),rts/dist/build/libffi$($w_libsuf))
+RTS_INSTALL_LIBS += $(foreach w,$(filter-out dyn,$(rts_WAYS)),rts/dist/build/libCffi$($w_libsuf))
RTS_INSTALL_LIBS += rts/dist/build/$(LIBFFI_DLL)
endif