diff options
author | Michal Marek <mmarek@suse.cz> | 2012-07-07 17:32:18 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2012-07-13 17:04:30 -0400 |
commit | 5b580fa671a6a8dd775bb6e54e4858678296c38a (patch) | |
tree | 72d6c88177299367be37d87239c2ce6d6e614039 /scripts | |
parent | 1a7a8c6fd8ca24d3692dacddf8d658c9bb9c14ad (diff) |
kconfig: Print errors to stderr in the Makefile
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/Makefile | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index cf1171f0f02b..8dacae8bf4b9 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
@@ -234,12 +234,12 @@ $(obj)/.tmp_qtcheck: | |||
234 | if [ -f $$d/include/qconfig.h ]; then dir=$$d; break; fi; \ | 234 | if [ -f $$d/include/qconfig.h ]; then dir=$$d; break; fi; \ |
235 | done; \ | 235 | done; \ |
236 | if [ -z "$$dir" ]; then \ | 236 | if [ -z "$$dir" ]; then \ |
237 | echo "*"; \ | 237 | echo >&2 "*"; \ |
238 | echo "* Unable to find any QT installation. Please make sure that"; \ | 238 | echo >&2 "* Unable to find any QT installation. Please make sure that"; \ |
239 | echo "* the QT4 or QT3 development package is correctly installed and"; \ | 239 | echo >&2 "* the QT4 or QT3 development package is correctly installed and"; \ |
240 | echo "* either qmake can be found or install pkg-config or set"; \ | 240 | echo >&2 "* either qmake can be found or install pkg-config or set"; \ |
241 | echo "* the QTDIR environment variable to the correct location."; \ | 241 | echo >&2 "* the QTDIR environment variable to the correct location."; \ |
242 | echo "*"; \ | 242 | echo >&2 "*"; \ |
243 | false; \ | 243 | false; \ |
244 | fi; \ | 244 | fi; \ |
245 | libpath=$$dir/lib; lib=qt; osdir=""; \ | 245 | libpath=$$dir/lib; lib=qt; osdir=""; \ |
@@ -279,17 +279,17 @@ $(obj)/.tmp_gtkcheck: | |||
279 | if `pkg-config --atleast-version=2.0.0 gtk+-2.0`; then \ | 279 | if `pkg-config --atleast-version=2.0.0 gtk+-2.0`; then \ |
280 | touch $@; \ | 280 | touch $@; \ |
281 | else \ | 281 | else \ |
282 | echo "*"; \ | 282 | echo >&2 "*"; \ |
283 | echo "* GTK+ is present but version >= 2.0.0 is required."; \ | 283 | echo >&2 "* GTK+ is present but version >= 2.0.0 is required."; \ |
284 | echo "*"; \ | 284 | echo >&2 "*"; \ |
285 | false; \ | 285 | false; \ |
286 | fi \ | 286 | fi \ |
287 | else \ | 287 | else \ |
288 | echo "*"; \ | 288 | echo >&2 "*"; \ |
289 | echo "* Unable to find the GTK+ installation. Please make sure that"; \ | 289 | echo >&2 "* Unable to find the GTK+ installation. Please make sure that"; \ |
290 | echo "* the GTK+ 2.0 development package is correctly installed..."; \ | 290 | echo >&2 "* the GTK+ 2.0 development package is correctly installed..."; \ |
291 | echo "* You need gtk+-2.0, glib-2.0 and libglade-2.0."; \ | 291 | echo >&2 "* You need gtk+-2.0, glib-2.0 and libglade-2.0."; \ |
292 | echo "*"; \ | 292 | echo >&2 "*"; \ |
293 | false; \ | 293 | false; \ |
294 | fi | 294 | fi |
295 | endif | 295 | endif |