diff options
author | Erik de Castro Lopo <erikd@mega-nerd.com> | 2016-06-01 06:14:00 +1000 |
---|---|---|
committer | Erik de Castro Lopo <erikd@mega-nerd.com> | 2016-06-01 06:14:00 +1000 |
commit | 0676e68cf5fe8696f1f760fef0f35dba14db1104 (patch) | |
tree | eade146204a9d1e64767e3eeb62feb1dbef789da /mk | |
parent | 930e74f8f494962745c16a59f156a0ed9f2f1df1 (diff) | |
download | haskell-0676e68cf5fe8696f1f760fef0f35dba14db1104.tar.gz |
Fix detection and use of `USE_LIBDW`
Test Plan: Configure/build with and without --enable-libdw
Reviewers: trofi, hvr, austin, simonmar, bgamari
Reviewed By: bgamari
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D2276
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index 5dbde02e55..47198b942a 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -381,7 +381,7 @@ FFIIncludeDir=@FFIIncludeDir@ # GHC needs arch-specific tweak at least in # rts/Libdw.c:set_initial_registers() -GhcRtsWithLibdw=$(strip $(if $(filter $(TargetArch_CPP),i386 x86_64),@HaveLibdw@,NO)) +GhcRtsWithLibdw=$(strip $(if $(filter $(TargetArch_CPP),i386 x86_64),@UseLibdw@,NO)) ################################################################################ # |