From 8e64ef849d98a3804c3e6269250db944e97fc166 Mon Sep 17 00:00:00 2001 From: Marco Maggi Date: Sat, 20 Oct 2018 20:55:16 +0200 Subject: [PATCH] fixed missing dollar sign in parameter expansion of custom autoconf macro --- expat/conftools/expatcfg-compiler-supports-visibility.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expat/conftools/expatcfg-compiler-supports-visibility.m4 b/expat/conftools/expatcfg-compiler-supports-visibility.m4 index 5bc1a264..7e24fb1c 100644 --- a/expat/conftools/expatcfg-compiler-supports-visibility.m4 +++ b/expat/conftools/expatcfg-compiler-supports-visibility.m4 @@ -31,6 +31,6 @@ AC_DEFUN([EXPATCFG_COMPILER_SUPPORTS_VISIBILITY], AC_COMPILE_IFELSE([AC_LANG_SOURCE([[void __attribute__((visibility("default"))) foo(void); void foo(void) {}]])], [AS_VAR_SET([expatcfg_cv_compiler_supports_visibility],[yes])]) AS_VAR_COPY([CFLAGS],[OLDFLAGS])]) - AS_IF([test "$expatcfg_cv_compiler_supports_visibility" = yes],[$1],[2])]) + AS_IF([test "$expatcfg_cv_compiler_supports_visibility" = yes],[$1],[$2])]) # end of file -- 2.40.0