From patchwork Sat Mar 28 09:28:31 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Diego Viola X-Patchwork-Id: 6113511 Return-Path: X-Original-To: patchwork-linux-kbuild@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 699309F387 for ; Sat, 28 Mar 2015 09:28:35 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 5FD1C20386 for ; Sat, 28 Mar 2015 09:28:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 5CB9A20373 for ; Sat, 28 Mar 2015 09:28:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751213AbbC1J2c (ORCPT ); Sat, 28 Mar 2015 05:28:32 -0400 Received: from mail-qg0-f45.google.com ([209.85.192.45]:34367 "EHLO mail-qg0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751156AbbC1J2a (ORCPT ); Sat, 28 Mar 2015 05:28:30 -0400 Received: by qgep97 with SMTP id p97so152941357qge.1 for ; Sat, 28 Mar 2015 02:28:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=6lrSgGWsyeJFDAXpTzx/IGhTk2tnKV2IDlwBxB9UfIw=; b=I4HNWupcw/J/TfSGChAks4Fz+eLT6lZLiES2EPpNg4dMBtz7G/CkWkC0LW6KByVRhP Js6nZUo31mU6Iw+uW5+/E1ENj5zxmUf8dKWkJJoP6zqwqgmYg1aWnwZWb+ZZb4P4Jqr3 UpNO4vx5nuQd/Gx/nYz9Nad/8JJD713TMCGfCFiGvKkaMbvSC1ERX73GnpFpIOSIr4+E cl5kq5qOpXOpO+iuViw7hc4gWXOAXQqncsqCrOTVouqyy17YlT0c3pXI7EuXz4LxuMv5 /NzUrs/xxKm2Ms31SxClRaS1iXkkuQyH/GrSwlsQuQ2hFPwbIASABQnCOx4gyklPYgp+ /W0g== X-Received: by 10.55.41.80 with SMTP id p77mr48723398qkh.67.1427534909804; Sat, 28 Mar 2015 02:28:29 -0700 (PDT) Received: from myhost.localdomain ([191.254.135.253]) by mx.google.com with ESMTPSA id w130sm3331907qha.25.2015.03.28.02.28.27 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 28 Mar 2015 02:28:29 -0700 (PDT) From: Diego Viola To: linux-kbuild@vger.kernel.org Cc: Diego Viola Subject: [PATCH] scripts/kconfig/Makefile: fix Qt spelling Date: Sat, 28 Mar 2015 06:28:31 -0300 Message-Id: <1427534911-2914-1-git-send-email-diego.viola@gmail.com> X-Mailer: git-send-email 2.3.4 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Proper spelling is Qt, not QT. Signed-off-by: Diego Viola --- scripts/kconfig/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index cb2cf54..1ce4e39 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -124,7 +124,7 @@ help: @echo ' config - Update current config utilising a line-oriented program' @echo ' nconfig - Update current config utilising a ncurses menu based program' @echo ' menuconfig - Update current config utilising a menu based program' - @echo ' xconfig - Update current config utilising a QT based front-end' + @echo ' xconfig - Update current config utilising a Qt based front-end' @echo ' gconfig - Update current config utilising a GTK based front-end' @echo ' oldconfig - Update current config utilising a provided .config as base' @echo ' localmodconfig - Update current config disabling modules not loaded' @@ -158,7 +158,7 @@ HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) \ # mconf: Used for the menuconfig target # Utilizes the lxdialog package # qconf: Used for the xconfig target -# Based on QT which needs to be installed to compile it +# Based on Qt which needs to be installed to compile it # gconf: Used for the gconfig target # Based on GTK which needs to be installed to compile it # object files used by all kconfig flavours @@ -217,11 +217,11 @@ ifeq ($(MAKECMDGOALS),xconfig) $(obj)/.tmp_qtcheck: $(src)/Makefile -include $(obj)/.tmp_qtcheck -# QT needs some extra effort... +# Qt needs some extra effort... $(obj)/.tmp_qtcheck: @set -e; echo " CHECK qt"; dir=""; pkg=""; \ if ! pkg-config --exists QtCore 2> /dev/null; then \ - echo "* Unable to find the QT4 tool qmake. Trying to use QT3"; \ + echo "* Unable to find the Qt4 tool qmake. Trying to use Qt3"; \ pkg-config --exists qt 2> /dev/null && pkg=qt; \ pkg-config --exists qt-mt 2> /dev/null && pkg=qt-mt; \ if [ -n "$$pkg" ]; then \ @@ -235,8 +235,8 @@ $(obj)/.tmp_qtcheck: done; \ if [ -z "$$dir" ]; then \ 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 "* 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 "*"; \