diff options
author | DJ Delorie <dj@redhat.com> | 2005-06-06 18:36:50 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2005-06-06 18:36:50 +0000 |
commit | c10e9ba77d822ef6d87579541ec9510e793da0a4 (patch) | |
tree | 51e8c34b8707ba2559b201a87d8e6e54179e9847 /configure.in | |
parent | 5420f73dbbafa8009dcab94ef1787ce8c848d571 (diff) | |
download | gdb-c10e9ba77d822ef6d87579541ec9510e793da0a4.zip gdb-c10e9ba77d822ef6d87579541ec9510e793da0a4.tar.gz gdb-c10e9ba77d822ef6d87579541ec9510e793da0a4.tar.bz2 |
* configure.in: Fix typo in handling of --with-mpfr-dir.
* configure: Regenerate.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 7e2f52a..3f86f58 100644 --- a/configure.in +++ b/configure.in @@ -1033,7 +1033,7 @@ have_gmp=yes AC_ARG_WITH(mpfr-dir, [ --with-mpfr-dir=PATH Specify source directory for MPFR library]) if test "x$with_mpfr_dir" != x; then - gmpinc="-I$with_mpfr_dir/mpfr" + gmpinc="-I$with_mpfr_dir" gmplibs="$with_mpfr_dir/libmpfr.a" else gmplibs="-lmpfr" |