Remove extra quotes from --with-cxx error message

No real changes, just a cosmetic improvement to the error message given
if the value of --with-cxx=NN option is not recognized.
This commit is contained in:
Vadim Zeitlin
2020-07-14 02:29:35 +02:00
parent cde033df8d
commit e95ff829ef
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@@ -18505,7 +18505,7 @@ $as_echo "#define HAVE_CXX17 1" >>confdefs.h
;;
*)
as_fn_error $? "Invalid --with-cxx=\"$wxWITH_CXX\" option value, only 11, 14 or 17 supported" "$LINENO" 5
as_fn_error $? "Invalid --with-cxx=$wxWITH_CXX option value, only 11, 14 or 17 supported" "$LINENO" 5
esac
if test "$HAVE_CXX11" = "1" ; then

View File

@@ -1139,7 +1139,7 @@ if test -n "$wxWITH_CXX"; then
;;
*)
AC_MSG_ERROR([Invalid --with-cxx="$wxWITH_CXX" option value, only 11, 14 or 17 supported])
AC_MSG_ERROR([Invalid --with-cxx=$wxWITH_CXX option value, only 11, 14 or 17 supported])
esac
if test "$HAVE_CXX11" = "1" ; then