Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
237d7891
Commit
237d7891
authored
Mar 04, 2014
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Avoid printing empty warning lines.
parent
9c138d77
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
aclocal.m4
aclocal.m4
+2
-2
configure
configure
+6
-2
No files found.
aclocal.m4
View file @
237d7891
...
...
@@ -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"])
...
...
configure
View file @
237d7891
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment