mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-15 23:21:12 +02:00
Correctly quote AC_MSG_ERROR message.
configure will crash instead of showing the error message if the text contains a comma and is not quoted.
This commit is contained in:
6
configure
vendored
6
configure
vendored
@@ -5510,7 +5510,7 @@ fi
|
||||
|
||||
|
||||
if [ "$WX_CONFIG" = "no" ] ; then
|
||||
as_fn_error $? "\"Could not find wx-config: is wxWidgets installed? is wx-config in your path?\"" "$LINENO" 5
|
||||
as_fn_error $? "Could not find wx-config: is wxWidgets installed? is wx-config in your path?" "$LINENO" 5
|
||||
fi
|
||||
|
||||
if test "x$debug_preference" = "xyes"; then
|
||||
@@ -8940,7 +8940,7 @@ if test "$ac_res" != no; then :
|
||||
fi
|
||||
|
||||
if [ "$ac_cv_search_dlopen" = no ]; then
|
||||
as_fn_error required by Audacity "dlopen not found" "$LINENO" 5
|
||||
as_fn_error $? "dlopen not found, required by Audacity" "$LINENO" 5
|
||||
fi
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing XML_ParserCreate" >&5
|
||||
@@ -9000,7 +9000,7 @@ if test "$ac_res" != no; then :
|
||||
fi
|
||||
|
||||
if [ "$ac_cv_search_expat" = no ]; then
|
||||
as_fn_error required by Audacity "expat not found" "$LINENO" 5
|
||||
as_fn_error $? "expat not found, required by Audacity" "$LINENO" 5
|
||||
fi
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user