Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
5b580fa6
Commit
5b580fa6
authored
Jul 07, 2012
by
Michal Marek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kconfig: Print errors to stderr in the Makefile
Signed-off-by:
Michal Marek
<
mmarek@suse.cz
>
parent
1a7a8c6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
scripts/kconfig/Makefile
scripts/kconfig/Makefile
+14
-14
No files found.
scripts/kconfig/Makefile
View file @
5b580fa6
...
...
@@ -234,12 +234,12 @@ $(obj)/.tmp_qtcheck:
if
[
-f
$$
d/include/qconfig.h
]
;
then
dir
=
$$
d
;
break
;
fi
;
\
done
;
\
if
[
-z
"
$$
dir"
]
;
then
\
echo
"*"
;
\
echo
"* Unable to find any QT installation. Please make sure that"
;
\
echo
"* the QT4 or QT3 development package is correctly installed and"
;
\
echo
"* either qmake can be found or install pkg-config or set"
;
\
echo
"* the QTDIR environment variable to the correct location."
;
\
echo
"*"
;
\
echo
>
&2
"*"
;
\
echo
>
&2
"* Unable to find any QT installation. Please make sure that"
;
\
echo
>
&2
"* the QT4 or QT3 development package is correctly installed and"
;
\
echo
>
&2
"* either qmake can be found or install pkg-config or set"
;
\
echo
>
&2
"* the QTDIR environment variable to the correct location."
;
\
echo
>
&2
"*"
;
\
false
;
\
fi
;
\
libpath
=
$$
dir
/lib
;
lib
=
qt
;
osdir
=
""
;
\
...
...
@@ -279,17 +279,17 @@ $(obj)/.tmp_gtkcheck:
if
`
pkg-config
--atleast-version
=
2.0.0 gtk+-2.0
`
;
then
\
touch
$@
;
\
else
\
echo
"*"
;
\
echo
"* GTK+ is present but version >= 2.0.0 is required."
;
\
echo
"*"
;
\
echo
>
&2
"*"
;
\
echo
>
&2
"* GTK+ is present but version >= 2.0.0 is required."
;
\
echo
>
&2
"*"
;
\
false
;
\
fi
\
else
\
echo
"*"
;
\
echo
"* Unable to find the GTK+ installation. Please make sure that"
;
\
echo
"* the GTK+ 2.0 development package is correctly installed..."
;
\
echo
"* You need gtk+-2.0, glib-2.0 and libglade-2.0."
;
\
echo
"*"
;
\
echo
>
&2
"*"
;
\
echo
>
&2
"* Unable to find the GTK+ installation. Please make sure that"
;
\
echo
>
&2
"* the GTK+ 2.0 development package is correctly installed..."
;
\
echo
>
&2
"* You need gtk+-2.0, glib-2.0 and libglade-2.0."
;
\
echo
>
&2
"*"
;
\
false
;
\
fi
endif
...
...
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