diff options
author | Diego Viola <diego.viola@gmail.com> | 2015-04-06 05:27:45 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2015-05-28 04:27:02 -0400 |
commit | 092373c2b8cb67b757ec59f3e6251b45ef333b38 (patch) | |
tree | b6197df56413e80daf7487a0a176485d2c9ef982 /scripts/kconfig/Makefile | |
parent | e911503085ae8a6bb826588076f66df05890253c (diff) |
scripts/kconfig/Makefile: Fix spelling of Qt
Signed-off-by: Diego Viola <diego.viola@gmail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/kconfig/Makefile')
-rw-r--r-- | scripts/kconfig/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index d9b1fef0c67e..3b48f7afb894 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
@@ -124,7 +124,7 @@ help: | |||
124 | @echo ' config - Update current config utilising a line-oriented program' | 124 | @echo ' config - Update current config utilising a line-oriented program' |
125 | @echo ' nconfig - Update current config utilising a ncurses menu based program' | 125 | @echo ' nconfig - Update current config utilising a ncurses menu based program' |
126 | @echo ' menuconfig - Update current config utilising a menu based program' | 126 | @echo ' menuconfig - Update current config utilising a menu based program' |
127 | @echo ' xconfig - Update current config utilising a QT based front-end' | 127 | @echo ' xconfig - Update current config utilising a Qt based front-end' |
128 | @echo ' gconfig - Update current config utilising a GTK based front-end' | 128 | @echo ' gconfig - Update current config utilising a GTK based front-end' |
129 | @echo ' oldconfig - Update current config utilising a provided .config as base' | 129 | @echo ' oldconfig - Update current config utilising a provided .config as base' |
130 | @echo ' localmodconfig - Update current config disabling modules not loaded' | 130 | @echo ' localmodconfig - Update current config disabling modules not loaded' |
@@ -158,7 +158,7 @@ HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) \ | |||
158 | # mconf: Used for the menuconfig target | 158 | # mconf: Used for the menuconfig target |
159 | # Utilizes the lxdialog package | 159 | # Utilizes the lxdialog package |
160 | # qconf: Used for the xconfig target | 160 | # qconf: Used for the xconfig target |
161 | # Based on QT which needs to be installed to compile it | 161 | # Based on Qt which needs to be installed to compile it |
162 | # gconf: Used for the gconfig target | 162 | # gconf: Used for the gconfig target |
163 | # Based on GTK which needs to be installed to compile it | 163 | # Based on GTK which needs to be installed to compile it |
164 | # object files used by all kconfig flavours | 164 | # object files used by all kconfig flavours |
@@ -217,11 +217,11 @@ ifeq ($(MAKECMDGOALS),xconfig) | |||
217 | $(obj)/.tmp_qtcheck: $(src)/Makefile | 217 | $(obj)/.tmp_qtcheck: $(src)/Makefile |
218 | -include $(obj)/.tmp_qtcheck | 218 | -include $(obj)/.tmp_qtcheck |
219 | 219 | ||
220 | # QT needs some extra effort... | 220 | # Qt needs some extra effort... |
221 | $(obj)/.tmp_qtcheck: | 221 | $(obj)/.tmp_qtcheck: |
222 | @set -e; $(kecho) " CHECK qt"; dir=""; pkg=""; \ | 222 | @set -e; $(kecho) " CHECK qt"; dir=""; pkg=""; \ |
223 | if ! pkg-config --exists QtCore 2> /dev/null; then \ | 223 | if ! pkg-config --exists QtCore 2> /dev/null; then \ |
224 | echo "* Unable to find the QT4 tool qmake. Trying to use QT3"; \ | 224 | echo "* Unable to find the Qt4 tool qmake. Trying to use Qt3"; \ |
225 | pkg-config --exists qt 2> /dev/null && pkg=qt; \ | 225 | pkg-config --exists qt 2> /dev/null && pkg=qt; \ |
226 | pkg-config --exists qt-mt 2> /dev/null && pkg=qt-mt; \ | 226 | pkg-config --exists qt-mt 2> /dev/null && pkg=qt-mt; \ |
227 | if [ -n "$$pkg" ]; then \ | 227 | if [ -n "$$pkg" ]; then \ |
@@ -235,8 +235,8 @@ $(obj)/.tmp_qtcheck: | |||
235 | done; \ | 235 | done; \ |
236 | if [ -z "$$dir" ]; then \ | 236 | if [ -z "$$dir" ]; then \ |
237 | echo >&2 "*"; \ | 237 | echo >&2 "*"; \ |
238 | echo >&2 "* 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 >&2 "* 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 >&2 "* 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 >&2 "* the QTDIR environment variable to the correct location."; \ | 241 | echo >&2 "* the QTDIR environment variable to the correct location."; \ |
242 | echo >&2 "*"; \ | 242 | echo >&2 "*"; \ |