[Bug 431] cacao build broken, making redist all, in icedtea6

bugzilla-daemon at icedtea.classpath.org bugzilla-daemon at icedtea.classpath.org
Sun Jan 17 14:05:27 PST 2010


http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=431





------- Comment #5 from gnu_andrew at member.fsf.org  2010-01-17 22:05 -------
ah so maybe a CACAO bug in that it doesn't create the necessary client
directory for archs which support client (x86, arm).  x86_64 doesn't so the
OpenJDK build looks for and finds it in server.  It seems strange we wouldn't
have seen this before though.

Indeed, here is the logic from src/cacao/Makefile.am:

if WITH_JAVA_RUNTIME_LIBRARY_OPENJDK
install-data-local:
        $(mkdir_p) $(prefix)/jre/lib/$(JAVA_ARCH)/server
        $(LN_S) -f $(libdir)/libjvm.so $(prefix)/jre/lib/$(JAVA_ARCH)/server
        $(ECHO) $(ECHO_N) > $(prefix)/jre/lib/$(JAVA_ARCH)/server/Xusage.txt
        $(ECHO) $(ECHO_N) > $(prefix)/jre/lib/$(JAVA_ARCH)/server/libjsig.so

uninstall-local:
        rm -f $(prefix)/jre/lib/$(JAVA_ARCH)/server/libjvm.so
        rm -f $(prefix)/jre/lib/$(JAVA_ARCH)/server/Xusage.txt
        rm -f $(prefix)/jre/lib/$(JAVA_ARCH)/server/libjsig.so
endif

and grep -r 'client/' in the CACAO tree returns nothing.

On the OpenJDK side, make/java/redist/Makefile has this logic:

# Hotspot client is only available on 32-bit builds                             
ifeq ($(ARCH_DATA_MODEL), 32)
  IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVM_NAME) \
                 $(LIB_LOCATION)/$(CLIENT_LOCATION)/Xusage.txt
endif


but that's been there since OpenJDK6 was created.

So what changed to break this?


-- 
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the distro-pkg-dev mailing list