Ignore:
Timestamp:
Dec 21, 2012, 10:37:13 AM (13 years ago)
Author:
dmik
Message:

trunk: Merged in openjdk6 b27 from branches/vendor/oracle.

Location:
trunk/openjdk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk

  • trunk/openjdk/jdk/make/com/sun/jmx/Makefile

    r278 r406  
    11#
    2 # Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
     2# Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
    33# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    44#
     
    9999# org.omg.stub (6375696)
    100100#
     101# To ensure the latest stub generator files are picked up from corba repo
     102# when available, we need to run with latest rmic version available. rmic
     103# launch tool not built at this stage but we can invoke via rmi class.
     104
     105RMIC_JAVA = $(OUTPUTDIR)/bin/java
     106# need to treat 64bit solaris differently
     107ifeq ($(PLATFORM)-$(LIBARCH), solaris-amd64)
     108RMIC_JAVA = $(OUTPUTDIR)/bin/amd64/java
     109endif
     110ifeq ($(PLATFORM)-$(LIBARCH), solaris-sparcv9)
     111RMIC_JAVA = $(OUTPUTDIR)/bin/sparcv9/java
     112endif
     113
     114RMIC = $(RMIC_JAVA) $(JAVA_TOOLS_FLAGS) -cp $(OUTPUTDIR)/classes sun.rmi.rmic.Main
     115
    101116$(CLASSDESTDIR)/%_Stub.class: $(CLASSDESTDIR)/%.class
    102117        $(prep-target)
Note: See TracChangeset for help on using the changeset viewer.