From bd7bd5ff0c5cdaa3923d1a741c68242817f5cb44 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 20 Jun 2020 11:35:56 -0700 Subject: [PATCH] Simplify some escaping. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ea360e96..034c6737 100644 --- a/configure.ac +++ b/configure.ac @@ -230,7 +230,7 @@ if test x"$SIMD" != x""; then SIMD=`echo "$SIMD" | sed 's/^ *//'` AC_MSG_RESULT([yes ($SIMD)]) AC_DEFINE(HAVE_SIMD, 1, [Define to 1 to enable SIMD optimizations]) - SIMD=`echo "\\\$(SIMD_$SIMD)" | sed 's/ /) $(SIMD_/g'` + SIMD=`echo '$(SIMD_'"$SIMD)" | sed 's/ /) $(SIMD_/g'` # We only use c++ for its target attribute dispatching, disable unneeded bulky features CXXFLAGS="$CXXFLAGS -fno-exceptions -fno-rtti" else -- 2.47.2