Commit 8b9cfd76 by Ian Lance Taylor

re PR go/90635 (typo in libgo/configure.ac)

	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: r271640
parent 8b331014
578c4fb6132801db8e9d11d741d2394e07c5a398 3995d545f1e112c682753f342eaef0877551a649
The first line of this file holds the git revision number of the last The first line of this file holds the git revision number of the last
merge done from the gofrontend repository. merge done from the gofrontend repository.
...@@ -13712,7 +13712,7 @@ $as_echo "#define USE_LIBFFI 1" >>confdefs.h ...@@ -13712,7 +13712,7 @@ $as_echo "#define USE_LIBFFI 1" >>confdefs.h
fi fi
if test "$with_liffi" != "no"; then if test "$with_libffi" != "no"; then
USE_LIBFFI_TRUE= USE_LIBFFI_TRUE=
USE_LIBFFI_FALSE='#' USE_LIBFFI_FALSE='#'
else else
......
...@@ -128,7 +128,7 @@ if test "$with_libffi" != no; then ...@@ -128,7 +128,7 @@ if test "$with_libffi" != no; then
fi fi
AC_SUBST(LIBFFI) AC_SUBST(LIBFFI)
AC_SUBST(LIBFFIINCS) 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 # 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 # on an architecture for which libgo does not need an atomic support library and
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment