diff options
author | dholland <dholland@pkgsrc.org> | 2012-05-14 06:06:43 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2012-05-14 06:06:43 +0000 |
commit | 4e2e53eb47354451002dd24007a4dfdb3c91af86 (patch) | |
tree | e7fbfa288c52b312d851cd06c0a837869b149151 /mk/java-vm.mk | |
parent | a010cd675f78acb4227462b5315f5ced5ffb2182 (diff) | |
download | pkgsrc-4e2e53eb47354451002dd24007a4dfdb3c91af86.tar.gz |
Partially revert previous: exclude kaffe on x86_64 again as it builds
but apparently does not work.
I'm seeing two different problems on different machines, one where it
can't find classes in jar files that are clearly there and one where
it can't run even a trivial program without dying with a stack
overflow.
Diffstat (limited to 'mk/java-vm.mk')
-rw-r--r-- | mk/java-vm.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mk/java-vm.mk b/mk/java-vm.mk index 042ca9ad2ec..f45d8ed819e 100644 --- a/mk/java-vm.mk +++ b/mk/java-vm.mk @@ -1,4 +1,4 @@ -# $NetBSD: java-vm.mk,v 1.85 2012/05/14 05:31:21 dholland Exp $ +# $NetBSD: java-vm.mk,v 1.86 2012/05/14 06:06:43 dholland Exp $ # # This Makefile fragment handles Java dependencies and make variables, # and is meant to be included by packages that require Java either at @@ -119,7 +119,8 @@ _ONLY_FOR_PLATFORMS.jdk16= \ NetBSD-[2-9].*-i386 NetBSD-[4-9].*-x86_64 _ONLY_FOR_PLATFORMS.kaffe= \ *-*-alpha *-*-arm *-*-arm32 *-*-i386 *-*-m68k \ - *-*-mipsel* *-*-sparc *-*-powerpc *-*-x86_64 + *-*-mipsel* *-*-sparc *-*-powerpc +# exclude *-*-x86_64 from kaffe list as it apparently doesn't work _ONLY_FOR_PLATFORMS.sun-jdk6= \ Darwin-9.*-i386 Darwin-9.*-x86_64 \ Darwin-10.*-i386 Darwin-10.*-x86_64 \ |