diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-10-17 18:38:00 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-10-29 20:31:36 -0400 |
commit | 3c0372d6bce9c1d580efdfff148e922a6519db08 (patch) | |
tree | dc63365c38bf036c1380f7e05b1cbfcb6e0c34bb /distrib | |
parent | 72f7ac9ad66b886f4ea9569446e20aa4f97890e4 (diff) | |
download | haskell-3c0372d6bce9c1d580efdfff148e922a6519db08.tar.gz |
distrib: Fix binary distribution installation
This had silently regressed due to 81860281 and the variable renaming performed
in b55ee979, as noted in #17374.
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/configure.ac.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/distrib/configure.ac.in b/distrib/configure.ac.in index b5f4412276..aa3470a9b1 100644 --- a/distrib/configure.ac.in +++ b/distrib/configure.ac.in @@ -18,8 +18,8 @@ FP_GMP dnl Various things from the source distribution configure bootstrap_target=@TargetPlatform@ -HaveRTSLinker=@HaveRTSLinker@ -AC_SUBST(HaveRTSLinker) +TargetHasRTSLinker=@TargetHasRTSLinker@ +AC_SUBST(TargetHasRTSLinker) FFIIncludeDir=@FFIIncludeDir@ FFILibDir=@FFILibDir@ @@ -42,10 +42,12 @@ FP_FIND_ROOT CrossCompiling=NO CrossCompilePrefix="" TargetPlatformFull="${target}" +TablesNextToCode="@TablesNextToCode@" AC_SUBST(CrossCompiling) AC_SUBST(CrossCompilePrefix) AC_SUBST(TargetPlatformFull) +AC_SUBST(TablesNextToCode) Unregisterised="@Unregisterised@" AC_SUBST(Unregisterised) |