diff options
author | simonmar <unknown> | 2000-03-15 15:03:20 +0000 |
---|---|---|
committer | simonmar <unknown> | 2000-03-15 15:03:20 +0000 |
commit | d811abf65c8a370f490e104bef8224f1998e2325 (patch) | |
tree | 2bc6964151eaf0b395464a02735d3c2f9e6fd07b /ghc/rts/gmp/mpn | |
parent | bb08e42e70a20fc011abc3e4fbccb7d3680b98be (diff) | |
download | haskell-d811abf65c8a370f490e104bef8224f1998e2325.tar.gz |
[project @ 2000-03-15 15:03:20 by simonmar]
Fix configuration/building of GMP.
Diffstat (limited to 'ghc/rts/gmp/mpn')
-rw-r--r-- | ghc/rts/gmp/mpn/configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ghc/rts/gmp/mpn/configure.in b/ghc/rts/gmp/mpn/configure.in index 90c2626381..1002904e59 100644 --- a/ghc/rts/gmp/mpn/configure.in +++ b/ghc/rts/gmp/mpn/configure.in @@ -1,8 +1,8 @@ # This file is a shell script fragment that supplies the information # necessary for a configure script to process the program in # this directory. For more information, look at ../configure. +AC_INIT(Makefile.in) -configdirs= srctrigger=powerpc32 srcname="GNU Multi-Precision library/mpn" @@ -171,6 +171,9 @@ mpn_links=$links # post-target: +AC_LINK_FILES($files,$links) +AC_OUTPUT(Makefile) + sed <Makefile >Makefile.tmp \ -e "s/MPN_LINKS = .*/MPN_LINKS =${mpn_links}/" \ -e "s/MPN_OBJECTS = .*/MPN_OBJECTS =${mpn_objects}/" |