Commit 237d7891 authored by Alexandre Julliard's avatar Alexandre Julliard

configure: Avoid printing empty warning lines.

parent 9c138d77
......@@ -782,13 +782,13 @@ if test "x$wine_notices != "x; then
IFS="|"
for msg in $wine_notices; do
IFS="$ac_save_IFS"
AS_VAR_SET_IF([msg],[AC_MSG_NOTICE([$msg])])
AS_VAR_IF([msg],[],,[AC_MSG_NOTICE([$msg])])
done
fi
IFS="|"
for msg in $wine_warnings; do
IFS="$ac_save_IFS"
AS_VAR_SET_IF([msg],[echo >&2
AS_VAR_IF([msg],[],,[echo >&2
AC_MSG_WARN([$msg])])
done
IFS="$ac_save_IFS"])
......
......@@ -18907,7 +18907,9 @@ if test "x$wine_notices != "x; then
IFS="|"
for msg in $wine_notices; do
IFS="$ac_save_IFS"
if ${msg+:} false; then :
if ${msg:+false} :; then :
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: $msg" >&5
$as_echo "$as_me: $msg" >&6;}
fi
......@@ -18916,7 +18918,9 @@ fi
IFS="|"
for msg in $wine_warnings; do
IFS="$ac_save_IFS"
if ${msg+:} false; then :
if ${msg:+false} :; then :
else
echo >&2
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $msg" >&5
$as_echo "$as_me: WARNING: $msg" >&2;}
......
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