* [Buildroot] [pull request] Pull request for branch sed-fix
@ 2009-08-04 19:47 Thomas Petazzoni
2009-08-04 19:48 ` [Buildroot] [PATCH 1/1] sed: fix compilation with external toolchains Thomas Petazzoni
2009-08-04 20:59 ` [Buildroot] [pull request] Pull request for branch sed-fix Peter Korsgaard
0 siblings, 2 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2009-08-04 19:47 UTC (permalink / raw)
To: buildroot
The following changes since commit 5b72dda69f72e1953dfc7987dd1b418e1afe79a4:
Peter Korsgaard (1):
buildroot: fix fallout after qtopia4 -> qt rename
are available in the git repository at:
git://git.busybox.net/~tpetazzoni/git/buildroot sed-fix
Thomas Petazzoni (1):
sed: fix compilation with external toolchains
CHANGES | 1 +
package/sed/sed.mk | 2 +-
2 files changed, 2 insertions(+), 1 deletions(-)
Thanks,
--
Thomas Petazzoni
^ permalink raw reply [flat|nested] 5+ messages in thread* [Buildroot] [PATCH 1/1] sed: fix compilation with external toolchains
2009-08-04 19:47 [Buildroot] [pull request] Pull request for branch sed-fix Thomas Petazzoni
@ 2009-08-04 19:48 ` Thomas Petazzoni
2009-08-04 20:57 ` Peter Korsgaard
2009-08-04 20:59 ` [Buildroot] [pull request] Pull request for branch sed-fix Peter Korsgaard
1 sibling, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2009-08-04 19:48 UTC (permalink / raw)
To: buildroot
Since CC is already passed in TARGET_CONFIGURE_OPTS at ./configure
time, there's no point in overriding it with a wrong value at
compilation time. This breaks external toolchain builds since
CC=$(TARGET_CC) is wrong because it excludes the mandatory --sysroot
option.
Fixes bug #525
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
CHANGES | 1 +
package/sed/sed.mk | 2 +-
2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/CHANGES b/CHANGES
index 0c1f667..36b9b45 100644
--- a/CHANGES
+++ b/CHANGES
@@ -77,6 +77,7 @@
#497: OpenSSL RSA key generation hangs on x86_64
#509: Bump sqlite package to 3.6.16
#523: pciutils broken with external toolchain
+ #525: sed broken with external toolchain
#533: Update gamin to 0.1.10 to fix compilation
2009.05, Released June 1st, 2009:
diff --git a/package/sed/sed.mk b/package/sed/sed.mk
index 9caefed..07f4b32 100644
--- a/package/sed/sed.mk
+++ b/package/sed/sed.mk
@@ -135,7 +135,7 @@ $(SED_DIR2)/.configured: $(SED_DIR2)/.unpacked
touch $@
$(SED_DIR2)/$(SED_BINARY): $(SED_DIR2)/.configured
- $(MAKE) CC=$(TARGET_CC) -C $(SED_DIR2)
+ $(MAKE) -C $(SED_DIR2)
# This stuff is needed to work around GNU make deficiencies
sed-target_binary: $(SED_DIR2)/$(SED_BINARY)
--
1.6.0.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 1/1] sed: fix compilation with external toolchains
2009-08-04 19:48 ` [Buildroot] [PATCH 1/1] sed: fix compilation with external toolchains Thomas Petazzoni
@ 2009-08-04 20:57 ` Peter Korsgaard
2009-08-04 22:07 ` Thomas Petazzoni
0 siblings, 1 reply; 5+ messages in thread
From: Peter Korsgaard @ 2009-08-04 20:57 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> Since CC is already passed in TARGET_CONFIGURE_OPTS at ./configure
Thomas> time, there's no point in overriding it with a wrong value at
Thomas> compilation time. This breaks external toolchain builds since
Thomas> CC=$(TARGET_CC) is wrong because it excludes the mandatory --sysroot
Thomas> option.
Thomas> Fixes bug #525
Thomas> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas> ---
Thomas> CHANGES | 1 +
Thomas> package/sed/sed.mk | 2 +-
Thomas> 2 files changed, 2 insertions(+), 1 deletions(-)
Thomas> diff --git a/CHANGES b/CHANGES
Thomas> index 0c1f667..36b9b45 100644
Thomas> --- a/CHANGES
Thomas> +++ b/CHANGES
Thomas> @@ -77,6 +77,7 @@
Thomas> #497: OpenSSL RSA key generation hangs on x86_64
Thomas> #509: Bump sqlite package to 3.6.16
Thomas> #523: pciutils broken with external toolchain
Thomas> + #525: sed broken with external toolchain
This should preferably go after -rc1, but I'll fix that for you.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 1/1] sed: fix compilation with external toolchains
2009-08-04 20:57 ` Peter Korsgaard
@ 2009-08-04 22:07 ` Thomas Petazzoni
0 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2009-08-04 22:07 UTC (permalink / raw)
To: buildroot
Le Tue, 04 Aug 2009 22:57:33 +0200,
Peter Korsgaard <jacmet@uclibc.org> a ?crit :
> This should preferably go after -rc1, but I'll fix that for you.
Ok, sorry. I also didn't see your mail before sending the gzip fix.
Will do for the next issues, though.
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers and embedded Linux development,
consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [pull request] Pull request for branch sed-fix
2009-08-04 19:47 [Buildroot] [pull request] Pull request for branch sed-fix Thomas Petazzoni
2009-08-04 19:48 ` [Buildroot] [PATCH 1/1] sed: fix compilation with external toolchains Thomas Petazzoni
@ 2009-08-04 20:59 ` Peter Korsgaard
1 sibling, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2009-08-04 20:59 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> The following changes since commit 5b72dda69f72e1953dfc7987dd1b418e1afe79a4:
Thomas> Peter Korsgaard (1):
Thomas> buildroot: fix fallout after qtopia4 -> qt rename
Thomas> are available in the git repository at:
Thomas> git://git.busybox.net/~tpetazzoni/git/buildroot sed-fix
Thomas> Thomas Petazzoni (1):
Thomas> sed: fix compilation with external toolchains
Pulled and pushed - Thanks!
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-08-04 22:07 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-04 19:47 [Buildroot] [pull request] Pull request for branch sed-fix Thomas Petazzoni
2009-08-04 19:48 ` [Buildroot] [PATCH 1/1] sed: fix compilation with external toolchains Thomas Petazzoni
2009-08-04 20:57 ` Peter Korsgaard
2009-08-04 22:07 ` Thomas Petazzoni
2009-08-04 20:59 ` [Buildroot] [pull request] Pull request for branch sed-fix Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox