Skip to content

Commit 092373c

Browse files
diegoviolamichal42
authored andcommitted
scripts/kconfig/Makefile: Fix spelling of Qt
Signed-off-by: Diego Viola <diego.viola@gmail.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
1 parent e911503 commit 092373c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

scripts/kconfig/Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ help:
124124
@echo ' config - Update current config utilising a line-oriented program'
125125
@echo ' nconfig - Update current config utilising a ncurses menu based program'
126126
@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'
128128
@echo ' gconfig - Update current config utilising a GTK based front-end'
129129
@echo ' oldconfig - Update current config utilising a provided .config as base'
130130
@echo ' localmodconfig - Update current config disabling modules not loaded'
@@ -158,7 +158,7 @@ HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) \
158158
# mconf: Used for the menuconfig target
159159
# Utilizes the lxdialog package
160160
# 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
162162
# gconf: Used for the gconfig target
163163
# Based on GTK which needs to be installed to compile it
164164
# object files used by all kconfig flavours
@@ -217,11 +217,11 @@ ifeq ($(MAKECMDGOALS),xconfig)
217217
$(obj)/.tmp_qtcheck: $(src)/Makefile
218218
-include $(obj)/.tmp_qtcheck
219219

220-
# QT needs some extra effort...
220+
# Qt needs some extra effort...
221221
$(obj)/.tmp_qtcheck:
222222
@set -e; $(kecho) " CHECK qt"; dir=""; pkg=""; \
223223
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"; \
225225
pkg-config --exists qt 2> /dev/null && pkg=qt; \
226226
pkg-config --exists qt-mt 2> /dev/null && pkg=qt-mt; \
227227
if [ -n "$$pkg" ]; then \
@@ -235,8 +235,8 @@ $(obj)/.tmp_qtcheck:
235235
done; \
236236
if [ -z "$$dir" ]; then \
237237
echo >&2 "*"; \
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"; \
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"; \
240240
echo >&2 "* either qmake can be found or install pkg-config or set"; \
241241
echo >&2 "* the QTDIR environment variable to the correct location."; \
242242
echo >&2 "*"; \

0 commit comments

Comments
 (0)