Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] qtopia4: fix wrong variable name for SQL
@ 2008-10-31  0:18 Markus Heidelberg
  2008-10-31  2:31 ` Thiago A. Corrêa
  0 siblings, 1 reply; 7+ messages in thread
From: Markus Heidelberg @ 2008-10-31  0:18 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
---
 package/qtopia4/qtopia4.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/qtopia4/qtopia4.mk b/package/qtopia4/qtopia4.mk
index 9c08be9..de3bf4d 100644
--- a/package/qtopia4/qtopia4.mk
+++ b/package/qtopia4/qtopia4.mk
@@ -307,7 +307,7 @@ endif
 		cp -dpfr $(STAGING_DIR)/usr/plugins/imageformats $(TARGET_DIR)/usr/plugins/; \
 		$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/plugins/imageformats/*; \
 	fi
-ifneq ($(BR2_PACKAGE_QTOPIA4_SQL),y)
+ifneq ($(BR2_PACKAGE_QTOPIA4_SQL_MODULE),y)
 	# Remove Sql libraries, not needed
 	-rm $(TARGET_DIR)/usr/lib/libQtSql*
 endif
-- 
1.6.0.3.524.g3adb7d

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

* [Buildroot] [PATCH] qtopia4: fix wrong variable name for SQL
  2008-10-31  0:18 [Buildroot] [PATCH] qtopia4: fix wrong variable name for SQL Markus Heidelberg
@ 2008-10-31  2:31 ` Thiago A. Corrêa
  2008-11-01 11:09   ` Markus Heidelberg
  0 siblings, 1 reply; 7+ messages in thread
From: Thiago A. Corrêa @ 2008-10-31  2:31 UTC (permalink / raw)
  To: buildroot

Thanks.
Applied in r23872.

Btw, could you send patches as attachments (instead or as well)? Not
sure how others prefers them, but since I don't view my mail on linux
boxes and only use linux through ssh I sort of have to apply them by
typing it back on the ssh window. Also, I don't trust copy and paste
to not mess with the whitespaces and tabs.... If I do mess them up
others jump on my neck. Whitespace damage is sort of worst than having
a non working package around here *smile*.

Anyway, thanks for spoting that. Sorry for my laziness.

Kind Regards,
   Thiago A. Correa

On Thu, Oct 30, 2008 at 10:18 PM, Markus Heidelberg
<markus.heidelberg@web.de> wrote:
> Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
> ---
>  package/qtopia4/qtopia4.mk |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/package/qtopia4/qtopia4.mk b/package/qtopia4/qtopia4.mk
> index 9c08be9..de3bf4d 100644
> --- a/package/qtopia4/qtopia4.mk
> +++ b/package/qtopia4/qtopia4.mk
> @@ -307,7 +307,7 @@ endif
>                cp -dpfr $(STAGING_DIR)/usr/plugins/imageformats $(TARGET_DIR)/usr/plugins/; \
>                $(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/plugins/imageformats/*; \
>        fi
> -ifneq ($(BR2_PACKAGE_QTOPIA4_SQL),y)
> +ifneq ($(BR2_PACKAGE_QTOPIA4_SQL_MODULE),y)
>        # Remove Sql libraries, not needed
>        -rm $(TARGET_DIR)/usr/lib/libQtSql*
>  endif
> --
> 1.6.0.3.524.g3adb7d
>
> _______________________________________________
> buildroot mailing list
> buildroot at uclibc.org
> http://busybox.net/mailman/listinfo/buildroot
>

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

* [Buildroot] [PATCH] qtopia4: fix wrong variable name for SQL
  2008-10-31  2:31 ` Thiago A. Corrêa
@ 2008-11-01 11:09   ` Markus Heidelberg
  2008-11-02 13:59     ` Peter Korsgaard
  0 siblings, 1 reply; 7+ messages in thread
From: Markus Heidelberg @ 2008-11-01 11:09 UTC (permalink / raw)
  To: buildroot

Thiago A. Corr?a, 31.10.2008:
> Thanks.
> Applied in r23872.
> 
> Btw, could you send patches as attachments (instead or as well)? Not
> sure how others prefers them,

I prefer inline patches, for easier commenting for example. I also find
attachments are quite annoying if I have to use the web archives and can't
just read the patch but have to download it at first. I know Peter prefers
inline for the ease of applying them with "git am" and he has already applied
a few from me.

> but since I don't view my mail on linux
> boxes and only use linux through ssh I sort of have to apply them by
> typing it back on the ssh window.

What are the advantages of using attachments or the disadvantages of inline
through your ssh connection? When you are able to save an attachment you can
also just save the whole email and apply it, can't you?

> Also, I don't trust copy and paste
> to not mess with the whitespaces and tabs.... If I do mess them up
> others jump on my neck. Whitespace damage is sort of worst than having
> a non working package around here *smile*.

If whitespace is damaged after copy and paste, you will notice it when
applying the malformed patch.

Markus

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

* [Buildroot] [PATCH] qtopia4: fix wrong variable name for SQL
  2008-11-01 11:09   ` Markus Heidelberg
@ 2008-11-02 13:59     ` Peter Korsgaard
  2008-11-03 12:13       ` Thiago A. Corrêa
  0 siblings, 1 reply; 7+ messages in thread
From: Peter Korsgaard @ 2008-11-02 13:59 UTC (permalink / raw)
  To: buildroot

>>>>> "Markus" == Markus Heidelberg <markus.heidelberg@web.de> writes:

Hi,

 >> Btw, could you send patches as attachments (instead or as well)? Not
 >> sure how others prefers them,

 Markus> I prefer inline patches, for easier commenting for example. I
 Markus> also find attachments are quite annoying if I have to use the
 Markus> web archives and can't just read the patch but have to
 Markus> download it at first. I know Peter prefers inline for the
 Markus> ease of applying them with "git am" and he has already
 Markus> applied a few from me.

Exactly!
 >> Also, I don't trust copy and paste
 >> to not mess with the whitespaces and tabs.... If I do mess them up
 >> others jump on my neck. Whitespace damage is sort of worst than having
 >> a non working package around here *smile*.

 Markus> If whitespace is damaged after copy and paste, you will
 Markus> notice it when applying the malformed patch.

Yes.

Thiago, what keeps you from using a proper email client?

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] qtopia4: fix wrong variable name for SQL
  2008-11-02 13:59     ` Peter Korsgaard
@ 2008-11-03 12:13       ` Thiago A. Corrêa
  2008-11-03 12:25         ` Peter Korsgaard
  2008-11-04  0:45         ` Markus Heidelberg
  0 siblings, 2 replies; 7+ messages in thread
From: Thiago A. Corrêa @ 2008-11-03 12:13 UTC (permalink / raw)
  To: buildroot

>>>>>> "Markus" == Markus Heidelberg <markus.heidelberg@web.de> writes:
>
> Hi,
>
>  >> Btw, could you send patches as attachments (instead or as well)? Not
>  >> sure how others prefers them,
>
>  Markus> I prefer inline patches, for easier commenting for example. I
>  Markus> also find attachments are quite annoying if I have to use the
>  Markus> web archives and can't just read the patch but have to
>  Markus> download it at first. I know Peter prefers inline for the
>  Markus> ease of applying them with "git am" and he has already
>  Markus> applied a few from me.
>
> Exactly!

I don't use git, and I guess I never will *smile*.

I agree it's best for commenting, but if it were also as well easier
to apply, then it means the submitter doesn't have to wait for Peter
to have the time to check it. I or someone else with the same problem
as me could do it.

>  >> Also, I don't trust copy and paste
>  >> to not mess with the whitespaces and tabs.... If I do mess them up
>  >> others jump on my neck. Whitespace damage is sort of worst than having
>  >> a non working package around here *smile*.
>
>  Markus> If whitespace is damaged after copy and paste, you will
>  Markus> notice it when applying the malformed patch.
>
> Yes.
>
> Thiago, what keeps you from using a proper email client?
>

I get rejects whenever I try to apply those git generated patches. It
just occured to me that maybe if I use the "show original" in the
gmail and copy from that it should work better. Will see in the next
patches if this works ;)

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

* [Buildroot] [PATCH] qtopia4: fix wrong variable name for SQL
  2008-11-03 12:13       ` Thiago A. Corrêa
@ 2008-11-03 12:25         ` Peter Korsgaard
  2008-11-04  0:45         ` Markus Heidelberg
  1 sibling, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2008-11-03 12:25 UTC (permalink / raw)
  To: buildroot

>>>>> "Thiago" == Thiago A Corr?a <thiago.correa@gmail.com> writes:

Hi,

 Markus> I prefer inline patches, for easier commenting for example. I
 Markus> also find attachments are quite annoying if I have to use the
 Markus> web archives and can't just read the patch but have to
 Markus> download it at first. I know Peter prefers inline for the
 Markus> ease of applying them with "git am" and he has already
 Markus> applied a few from me.
 >> 
 >> Exactly!

 Thiago> I don't use git, and I guess I never will *smile*.

Pity, you're missing out on good stuff. It's quite easy to get started
with git-svn.

 Thiago> I agree it's best for commenting, but if it were also as well
 Thiago> easier to apply, then it means the submitter doesn't have to
 Thiago> wait for Peter to have the time to check it. I or someone
 Thiago> else with the same problem as me could do it.

patch -p1 < mail afaik still works, but then you ofcourse have to do
the manual svn add / copy commit message ritual.

 >> Thiago, what keeps you from using a proper email client?
 
 Thiago> I get rejects whenever I try to apply those git generated patches. It
 Thiago> just occured to me that maybe if I use the "show original" in the
 Thiago> gmail and copy from that it should work better. Will see in the next
 Thiago> patches if this works ;)

Do you apply them with patch -p1 ?

About cut'n'paste - Careful that you don't get tabs converted to white
space on the way.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] qtopia4: fix wrong variable name for SQL
  2008-11-03 12:13       ` Thiago A. Corrêa
  2008-11-03 12:25         ` Peter Korsgaard
@ 2008-11-04  0:45         ` Markus Heidelberg
  1 sibling, 0 replies; 7+ messages in thread
From: Markus Heidelberg @ 2008-11-04  0:45 UTC (permalink / raw)
  To: buildroot

Thiago A. Corr?a, 03.11.2008:
> >>>>>> "Markus" == Markus Heidelberg <markus.heidelberg@web.de> writes:
> >
> >  >> Btw, could you send patches as attachments (instead or as well)? Not
> >  >> sure how others prefers them,
> >
> >  Markus> I prefer inline patches, for easier commenting for example. I
> >  Markus> also find attachments are quite annoying if I have to use the
> >  Markus> web archives and can't just read the patch but have to
> >  Markus> download it at first. I know Peter prefers inline for the
> >  Markus> ease of applying them with "git am" and he has already
> >  Markus> applied a few from me.
> >
> > Exactly!
> 
> I don't use git, and I guess I never will *smile*.

Please don't say so, you only put yourself into constraints. When working with
svn, I wouldn't be able to create patch series. Nor working on different
issues at once without duplicating the tree. Just because I can't commit
locally. Even with svn commit access I wouldn't use svn directly. Often you
want to backup small incremental changes, but send one single patch upstream.
It seems a couple of people are working in this fashion.

But of course you don't have to use git. Inline patches don't have anything to
do with git, they are much older.

> I agree it's best for commenting, but if it were also as well easier
> to apply, then it means the submitter doesn't have to wait for Peter
> to have the time to check it. I or someone else with the same problem
> as me could do it.

It IS easy to apply. You are the first person I hear complaining about inline
patches. Use a mail client instead of the web interface, saving the mail
should be exactly the same effort as saving an attached patch. Web interfaces
are fine for reading mails from all over the world but are crap for working
with.

> >  >> Also, I don't trust copy and paste
> >  >> to not mess with the whitespaces and tabs.... If I do mess them up
> >  >> others jump on my neck. Whitespace damage is sort of worst than having
> >  >> a non working package around here *smile*.
> >
> >  Markus> If whitespace is damaged after copy and paste, you will
> >  Markus> notice it when applying the malformed patch.
> >
> > Yes.
> >
> > Thiago, what keeps you from using a proper email client?
> >
> 
> I get rejects whenever I try to apply those git generated patches. It
> just occured to me that maybe if I use the "show original" in the
> gmail and copy from that it should work better. Will see in the next
> patches if this works ;)

If I'd attach the patch, it would also be "git generated". If not damaged
whitespace, maybe it was just the -p option as supposed by Peter.

Markus

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

end of thread, other threads:[~2008-11-04  0:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-31  0:18 [Buildroot] [PATCH] qtopia4: fix wrong variable name for SQL Markus Heidelberg
2008-10-31  2:31 ` Thiago A. Corrêa
2008-11-01 11:09   ` Markus Heidelberg
2008-11-02 13:59     ` Peter Korsgaard
2008-11-03 12:13       ` Thiago A. Corrêa
2008-11-03 12:25         ` Peter Korsgaard
2008-11-04  0:45         ` Markus Heidelberg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox