* [PATCH] icedtea6-native: fix problem on build hosts with linux kernel 3.x
@ 2011-12-09 17:00 Steffen Sledz
2011-12-09 19:59 ` Khem Raj
0 siblings, 1 reply; 5+ messages in thread
From: Steffen Sledz @ 2011-12-09 17:00 UTC (permalink / raw)
To: openembedded-devel; +Cc: Steffen Sledz
From: Steffen Sledz <sledz@dresearch.de>
see http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7072341
Signed-off-by: Steffen Sledz <sledz@dresearch.de>
---
recipes/icedtea/icedtea6-native.inc | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/recipes/icedtea/icedtea6-native.inc b/recipes/icedtea/icedtea6-native.inc
index 06da7c0..91d6075 100644
--- a/recipes/icedtea/icedtea6-native.inc
+++ b/recipes/icedtea/icedtea6-native.inc
@@ -1,7 +1,7 @@
DESCRIPTION = "Harness to build the source code from OpenJDK using Free Software build tools"
HOMEPAGE = "http://icedtea.classpath.org"
LICENSE = "GPL with Classpath Exception"
-INC_PR = "r4"
+INC_PR = "r5"
DEPENDS = "virtual/javac-native classpath-tools-native \
virtual/java-native classpath-native \
@@ -108,6 +108,13 @@ do_configure_append() {
-e"s|g++\$(GCC_SUFFIX)|${CXX}|" \
$F
done
+
+ for F in openjdk/hotspot/make/linux/Makefile openjdk-ecj/hotspot/make/linux/Makefile ;
+ do
+ sed -i \
+ -e"s|SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 2.7%|SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 3%|" \
+ $F
+ done
}
EXTRA_OEMAKE = ' \
--
1.7.7
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] icedtea6-native: fix problem on build hosts with linux kernel 3.x
2011-12-09 17:00 [PATCH] icedtea6-native: fix problem on build hosts with linux kernel 3.x Steffen Sledz
@ 2011-12-09 19:59 ` Khem Raj
2011-12-10 10:29 ` Steffen Sledz
0 siblings, 1 reply; 5+ messages in thread
From: Khem Raj @ 2011-12-09 19:59 UTC (permalink / raw)
To: openembedded-devel; +Cc: Steffen Sledz
On Fri, Dec 9, 2011 at 9:00 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
> done
> +
> + for F in openjdk/hotspot/make/linux/Makefile openjdk-ecj/hotspot/make/linux/Makefile ;
> + do
> + sed -i \
> + -e"s|SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 2.7%|SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 3%|" \
> + $F
> + done
> }
why drop the 'dot' may be using 3. is better ?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] icedtea6-native: fix problem on build hosts with linux kernel 3.x
2011-12-09 19:59 ` Khem Raj
@ 2011-12-10 10:29 ` Steffen Sledz
2011-12-13 8:12 ` Steffen Sledz
0 siblings, 1 reply; 5+ messages in thread
From: Steffen Sledz @ 2011-12-10 10:29 UTC (permalink / raw)
To: openembedded-devel; +Cc: Steffen Sledz
Am 09.12.2011 20:59, schrieb Khem Raj:
> On Fri, Dec 9, 2011 at 9:00 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>> done
>> +
>> + for F in openjdk/hotspot/make/linux/Makefile openjdk-ecj/hotspot/make/linux/Makefile ;
>> + do
>> + sed -i \
>> + -e"s|SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 2.7%|SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 3%|" \
>> + $F
>> + done
>> }
>
> why drop the 'dot' may be using 3. is better ?
Just following the scheme, e.g. 2.6% is without a dot too.
Steffen
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] icedtea6-native: fix problem on build hosts with linux kernel 3.x
2011-12-10 10:29 ` Steffen Sledz
@ 2011-12-13 8:12 ` Steffen Sledz
2011-12-14 11:23 ` Steffen Sledz
0 siblings, 1 reply; 5+ messages in thread
From: Steffen Sledz @ 2011-12-13 8:12 UTC (permalink / raw)
To: openembedded-devel
On 10.12.2011 11:29, Steffen Sledz wrote:
> Am 09.12.2011 20:59, schrieb Khem Raj:
>> On Fri, Dec 9, 2011 at 9:00 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>> done
>>> +
>>> + for F in openjdk/hotspot/make/linux/Makefile openjdk-ecj/hotspot/make/linux/Makefile ;
>>> + do
>>> + sed -i \
>>> + -e"s|SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 2.7%|SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 3%|" \
>>> + $F
>>> + done
>>> }
>>
>> why drop the 'dot' may be using 3. is better ?
>
> Just following the scheme, e.g. 2.6% is without a dot too.
Ping!
--
DResearch Fahrzeugelektronik GmbH
Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
Tel: +49 30 515932-237 mailto:sledz@dresearch-fe.de
Fax: +49 30 515932-299
Geschäftsführer: Dr. Michael Weber, Werner Mögle;
Amtsgericht Berlin Charlottenburg; HRB 130120 B;
Ust.-IDNr. DE273952058
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] icedtea6-native: fix problem on build hosts with linux kernel 3.x
2011-12-13 8:12 ` Steffen Sledz
@ 2011-12-14 11:23 ` Steffen Sledz
0 siblings, 0 replies; 5+ messages in thread
From: Steffen Sledz @ 2011-12-14 11:23 UTC (permalink / raw)
To: openembedded-devel
On 13.12.2011 09:12, Steffen Sledz wrote:
> On 10.12.2011 11:29, Steffen Sledz wrote:
>> Am 09.12.2011 20:59, schrieb Khem Raj:
>>> On Fri, Dec 9, 2011 at 9:00 AM, Steffen Sledz <sledz@dresearch-fe.de> wrote:
>>>> done
>>>> +
>>>> + for F in openjdk/hotspot/make/linux/Makefile openjdk-ecj/hotspot/make/linux/Makefile ;
>>>> + do
>>>> + sed -i \
>>>> + -e"s|SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 2.7%|SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 3%|" \
>>>> + $F
>>>> + done
>>>> }
>>>
>>> why drop the 'dot' may be using 3. is better ?
>>
>> Just following the scheme, e.g. 2.6% is without a dot too.
pushed to oe-classic master
--
DResearch Fahrzeugelektronik GmbH
Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
Tel: +49 30 515932-237 mailto:sledz@dresearch-fe.de
Fax: +49 30 515932-299
Geschäftsführer: Dr. Michael Weber, Werner Mögle;
Amtsgericht Berlin Charlottenburg; HRB 130120 B;
Ust.-IDNr. DE273952058
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-12-14 11:30 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-09 17:00 [PATCH] icedtea6-native: fix problem on build hosts with linux kernel 3.x Steffen Sledz
2011-12-09 19:59 ` Khem Raj
2011-12-10 10:29 ` Steffen Sledz
2011-12-13 8:12 ` Steffen Sledz
2011-12-14 11:23 ` Steffen Sledz
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.