]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR go/90635 (typo in libgo/configure.ac)
authorIan Lance Taylor <ian@gcc.gnu.org>
Mon, 27 May 2019 00:13:52 +0000 (00:13 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Mon, 27 May 2019 00:13:52 +0000 (00:13 +0000)
PR go/90635
    libgo: correct typo in USE_LIBFFI AM_CONDITIONAL

    Only affects the case of passing --without-libffi to configure.

    Fixes https://gcc.gnu.org/PR90635

    Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/178998

From-SVN: r271639

libgo/configure
libgo/configure.ac

index 06b68b0f4169de012d7b4c347d14cd0ccdf181aa..0d5845e154693a9885cc723910af76f34f52fd65 100755 (executable)
@@ -13712,7 +13712,7 @@ $as_echo "#define USE_LIBFFI 1" >>confdefs.h
 fi
 
 
- if test "$with_liffi" != "no"; then
+ if test "$with_libffi" != "no"; then
   USE_LIBFFI_TRUE=
   USE_LIBFFI_FALSE='#'
 else
index 03c07fe88381bac0c894e8865f0244c7a7bdcc8f..dfbbb8086dcf9f8e33c984577011be7ac46f5bfe 100644 (file)
@@ -128,7 +128,7 @@ if test "$with_libffi" != no; then
 fi
 AC_SUBST(LIBFFI)
 AC_SUBST(LIBFFIINCS)
-AM_CONDITIONAL(USE_LIBFFI, test "$with_liffi" != "no")
+AM_CONDITIONAL(USE_LIBFFI, test "$with_libffi" != "no")
 
 # See if the user wants to configure without libatomic. This is useful if we are
 # on an architecture for which libgo does not need an atomic support library and