linux-kbuild.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] scripts/kconfig/Makefile: Fix spelling of Qt
@ 2015-04-06  9:27 Diego Viola
  2015-04-13  1:22 ` Diego Viola
  0 siblings, 1 reply; 10+ messages in thread
From: Diego Viola @ 2015-04-06  9:27 UTC (permalink / raw)
  To: trivial; +Cc: linux-kbuild, linux-kernel, Diego Viola

Signed-off-by: Diego Viola <diego.viola@gmail.com>
---
 scripts/kconfig/Makefile | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile
index 9645c07..6da13d0 100644
--- a/scripts/kconfig/Makefile
+++ b/scripts/kconfig/Makefile
@@ -126,7 +126,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'
@@ -160,7 +160,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
@@ -219,11 +219,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 \
@@ -237,8 +237,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 "*"; \
-- 
2.3.5


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH] scripts/kconfig/Makefile: Fix spelling of Qt
  2015-04-06  9:27 [PATCH] scripts/kconfig/Makefile: Fix spelling of Qt Diego Viola
@ 2015-04-13  1:22 ` Diego Viola
  2015-04-13  1:24   ` Diego Viola
  0 siblings, 1 reply; 10+ messages in thread
From: Diego Viola @ 2015-04-13  1:22 UTC (permalink / raw)
  To: trivial; +Cc: linux-kbuild, linux-kernel, Diego Viola

Ping?

On Mon, Apr 6, 2015 at 6:27 AM, Diego Viola <diego.viola@gmail.com> wrote:
> Signed-off-by: Diego Viola <diego.viola@gmail.com>
> ---
>  scripts/kconfig/Makefile | 12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile
> index 9645c07..6da13d0 100644
> --- a/scripts/kconfig/Makefile
> +++ b/scripts/kconfig/Makefile
> @@ -126,7 +126,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'
> @@ -160,7 +160,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
> @@ -219,11 +219,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 \
> @@ -237,8 +237,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 "*"; \
> --
> 2.3.5
>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] scripts/kconfig/Makefile: Fix spelling of Qt
  2015-04-13  1:22 ` Diego Viola
@ 2015-04-13  1:24   ` Diego Viola
  2015-04-13  8:14     ` Paul Bolle
  0 siblings, 1 reply; 10+ messages in thread
From: Diego Viola @ 2015-04-13  1:24 UTC (permalink / raw)
  To: trivial; +Cc: linux-kbuild, linux-kernel, Diego Viola, mmarek

Ping?

On Sun, Apr 12, 2015 at 10:22 PM, Diego Viola <diego.viola@gmail.com> wrote:
> Ping?
>
> On Mon, Apr 6, 2015 at 6:27 AM, Diego Viola <diego.viola@gmail.com> wrote:
>> Signed-off-by: Diego Viola <diego.viola@gmail.com>
>> ---
>>  scripts/kconfig/Makefile | 12 ++++++------
>>  1 file changed, 6 insertions(+), 6 deletions(-)
>>
>> diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile
>> index 9645c07..6da13d0 100644
>> --- a/scripts/kconfig/Makefile
>> +++ b/scripts/kconfig/Makefile
>> @@ -126,7 +126,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'
>> @@ -160,7 +160,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
>> @@ -219,11 +219,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 \
>> @@ -237,8 +237,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 "*"; \
>> --
>> 2.3.5
>>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] scripts/kconfig/Makefile: Fix spelling of Qt
  2015-04-13  1:24   ` Diego Viola
@ 2015-04-13  8:14     ` Paul Bolle
  2015-04-15  4:26       ` Diego Viola
  0 siblings, 1 reply; 10+ messages in thread
From: Paul Bolle @ 2015-04-13  8:14 UTC (permalink / raw)
  To: Diego Viola; +Cc: trivial, linux-kbuild, linux-kernel, mmarek

On Sun, 2015-04-12 at 22:24 -0300, Diego Viola wrote:
> Ping?

Two pings within minutes?

> On Sun, Apr 12, 2015 at 10:22 PM, Diego Viola <diego.viola@gmail.com> wrote:
> > Ping?

The patch is trivial. Handling trivial patches might take some time.
Please show some patience. And, if MAINTAINERS is to be believed, you
should have put something like "[TRIVIAL]" somewhere in the subject
line. Perhaps that's why Jiri is silent.

(You sent at least three versions of this patch within a week. Why did
you do that? And, no, you shouldn't resend directly with a proper
Subject: line. Wait a week or two first.)

Thanks,


Paul Bolle


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] scripts/kconfig/Makefile: Fix spelling of Qt
  2015-04-13  8:14     ` Paul Bolle
@ 2015-04-15  4:26       ` Diego Viola
  2015-04-15  5:36         ` Jiri Kosina
  0 siblings, 1 reply; 10+ messages in thread
From: Diego Viola @ 2015-04-15  4:26 UTC (permalink / raw)
  To: Paul Bolle; +Cc: trivial, linux-kbuild, linux-kernel, mmarek, jkosina

I apologize for being impatient, but I sent my first patch a week ago
and then I sent another after a week.

I realize the patch is trivial, but I still want to see it merged
regardless, and this is my first contribution to the mailing list, so
I apologize for any inconvenience.

I thought my patch was being ignored and I didn't want to see it lost
with all the other emails/patches so I thought about resending it.

Should I send it again after a week if this one is ignored?

Thanks,

Diego

On Mon, Apr 13, 2015 at 5:14 AM, Paul Bolle <pebolle@tiscali.nl> wrote:
> On Sun, 2015-04-12 at 22:24 -0300, Diego Viola wrote:
>> Ping?
>
> Two pings within minutes?
>
>> On Sun, Apr 12, 2015 at 10:22 PM, Diego Viola <diego.viola@gmail.com> wrote:
>> > Ping?
>
> The patch is trivial. Handling trivial patches might take some time.
> Please show some patience. And, if MAINTAINERS is to be believed, you
> should have put something like "[TRIVIAL]" somewhere in the subject
> line. Perhaps that's why Jiri is silent.
>
> (You sent at least three versions of this patch within a week. Why did
> you do that? And, no, you shouldn't resend directly with a proper
> Subject: line. Wait a week or two first.)
>
> Thanks,
>
>
> Paul Bolle
>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] scripts/kconfig/Makefile: Fix spelling of Qt
  2015-04-15  4:26       ` Diego Viola
@ 2015-04-15  5:36         ` Jiri Kosina
  2015-04-15  5:48           ` Diego Viola
  0 siblings, 1 reply; 10+ messages in thread
From: Jiri Kosina @ 2015-04-15  5:36 UTC (permalink / raw)
  To: Diego Viola; +Cc: Paul Bolle, linux-kbuild, linux-kernel, mmarek

On Wed, 15 Apr 2015, Diego Viola wrote:

> I apologize for being impatient, but I sent my first patch a week ago
> and then I sent another after a week.
> 
> I realize the patch is trivial, but I still want to see it merged
> regardless, and this is my first contribution to the mailing list, so
> I apologize for any inconvenience.
> 
> I thought my patch was being ignored and I didn't want to see it lost
> with all the other emails/patches so I thought about resending it.
> 
> Should I send it again after a week if this one is ignored?

It's very trivial patch indeed, and that's exactly why it's not on the top 
of the TODO list of everybody on CC.

Plus we are just now in the middle of merge window, which is exactly the 
time when everyone is focusing on merging with Linus, and postpones even 
looking at patches which are not urgent bugfixes.

Don't worry about us not seeing your endless stream of pings about this 
typo. We are rather good in not losing e-mails, and you are trying really 
hard not to be overlooked.

Patience is a virtue.

-- 
Jiri Kosina
SUSE Labs

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] scripts/kconfig/Makefile: Fix spelling of Qt
  2015-04-15  5:36         ` Jiri Kosina
@ 2015-04-15  5:48           ` Diego Viola
  2015-05-27 19:43             ` Diego Viola
  0 siblings, 1 reply; 10+ messages in thread
From: Diego Viola @ 2015-04-15  5:48 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: Paul Bolle, linux-kbuild, linux-kernel, mmarek

Thanks, that gives me hope, I'll wait patiently then.

BTW, if you want any reference for how this is written, see this:

http://en.wikipedia.org/wiki/Qt_%28software%29

Thanks,

Diego

On Wed, Apr 15, 2015 at 2:36 AM, Jiri Kosina <jkosina@suse.cz> wrote:
> On Wed, 15 Apr 2015, Diego Viola wrote:
>
>> I apologize for being impatient, but I sent my first patch a week ago
>> and then I sent another after a week.
>>
>> I realize the patch is trivial, but I still want to see it merged
>> regardless, and this is my first contribution to the mailing list, so
>> I apologize for any inconvenience.
>>
>> I thought my patch was being ignored and I didn't want to see it lost
>> with all the other emails/patches so I thought about resending it.
>>
>> Should I send it again after a week if this one is ignored?
>
> It's very trivial patch indeed, and that's exactly why it's not on the top
> of the TODO list of everybody on CC.
>
> Plus we are just now in the middle of merge window, which is exactly the
> time when everyone is focusing on merging with Linus, and postpones even
> looking at patches which are not urgent bugfixes.
>
> Don't worry about us not seeing your endless stream of pings about this
> typo. We are rather good in not losing e-mails, and you are trying really
> hard not to be overlooked.
>
> Patience is a virtue.
>
> --
> Jiri Kosina
> SUSE Labs

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] scripts/kconfig/Makefile: Fix spelling of Qt
  2015-04-15  5:48           ` Diego Viola
@ 2015-05-27 19:43             ` Diego Viola
  2015-05-28  8:51               ` Michal Marek
  0 siblings, 1 reply; 10+ messages in thread
From: Diego Viola @ 2015-05-27 19:43 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: Paul Bolle, linux-kbuild, linux-kernel, mmarek

Ping?

On Wed, Apr 15, 2015 at 2:48 AM, Diego Viola <diego.viola@gmail.com> wrote:
> Thanks, that gives me hope, I'll wait patiently then.
>
> BTW, if you want any reference for how this is written, see this:
>
> http://en.wikipedia.org/wiki/Qt_%28software%29
>
> Thanks,
>
> Diego
>
> On Wed, Apr 15, 2015 at 2:36 AM, Jiri Kosina <jkosina@suse.cz> wrote:
>> On Wed, 15 Apr 2015, Diego Viola wrote:
>>
>>> I apologize for being impatient, but I sent my first patch a week ago
>>> and then I sent another after a week.
>>>
>>> I realize the patch is trivial, but I still want to see it merged
>>> regardless, and this is my first contribution to the mailing list, so
>>> I apologize for any inconvenience.
>>>
>>> I thought my patch was being ignored and I didn't want to see it lost
>>> with all the other emails/patches so I thought about resending it.
>>>
>>> Should I send it again after a week if this one is ignored?
>>
>> It's very trivial patch indeed, and that's exactly why it's not on the top
>> of the TODO list of everybody on CC.
>>
>> Plus we are just now in the middle of merge window, which is exactly the
>> time when everyone is focusing on merging with Linus, and postpones even
>> looking at patches which are not urgent bugfixes.
>>
>> Don't worry about us not seeing your endless stream of pings about this
>> typo. We are rather good in not losing e-mails, and you are trying really
>> hard not to be overlooked.
>>
>> Patience is a virtue.
>>
>> --
>> Jiri Kosina
>> SUSE Labs

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] scripts/kconfig/Makefile: Fix spelling of Qt
  2015-05-27 19:43             ` Diego Viola
@ 2015-05-28  8:51               ` Michal Marek
  2015-05-28 16:42                 ` Diego Viola
  0 siblings, 1 reply; 10+ messages in thread
From: Michal Marek @ 2015-05-28  8:51 UTC (permalink / raw)
  To: Diego Viola, Jiri Kosina; +Cc: Paul Bolle, linux-kbuild, linux-kernel

Dne 28.5.2015 v 03:43 Diego Viola napsal(a):
> Ping?

I applied the patch to kbuild.git#kconfig, sorry for the delay.

Michal

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] scripts/kconfig/Makefile: Fix spelling of Qt
  2015-05-28  8:51               ` Michal Marek
@ 2015-05-28 16:42                 ` Diego Viola
  0 siblings, 0 replies; 10+ messages in thread
From: Diego Viola @ 2015-05-28 16:42 UTC (permalink / raw)
  To: Michal Marek; +Cc: Jiri Kosina, Paul Bolle, linux-kbuild, linux-kernel

Thank you, this means a lot to me.

Diego

On Thu, May 28, 2015 at 5:51 AM, Michal Marek <mmarek@suse.cz> wrote:
> Dne 28.5.2015 v 03:43 Diego Viola napsal(a):
>> Ping?
>
> I applied the patch to kbuild.git#kconfig, sorry for the delay.
>
> Michal

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2015-05-28 16:42 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-06  9:27 [PATCH] scripts/kconfig/Makefile: Fix spelling of Qt Diego Viola
2015-04-13  1:22 ` Diego Viola
2015-04-13  1:24   ` Diego Viola
2015-04-13  8:14     ` Paul Bolle
2015-04-15  4:26       ` Diego Viola
2015-04-15  5:36         ` Jiri Kosina
2015-04-15  5:48           ` Diego Viola
2015-05-27 19:43             ` Diego Viola
2015-05-28  8:51               ` Michal Marek
2015-05-28 16:42                 ` Diego Viola

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).