So ... nashorn pushed this change:

http://hg.openjdk.java.net/jdk8/tl/diff/5b0b6ef58dbf/common/makefiles/MakeBase.gmk

which modified the way $ gets handled in a file name, and in doing so completely broke many of the pre-existing escape sequences used for dealing with nested classes (those with $ in their name). I'm not 100% convinced that this actually relates to secondary expansion but ...

Alan found and fixed both:

8008977: profiles build broken by Nashorn build changes

and

8009029: SunEC provider classes ending up in rt.jar after Nashorn build changes

However we have now ended up in a situation where nobody knows how to write the name of a nested class, without knowing how that name will actually get processed. If you look in CreateJars.gmk you will find:

RT_JAR_EXCLUDES += \
...
        sun/awt/motif/X11GB2312.class \
        sun/awt/motif/X11GB2312\$$Decoder.class \
        sun/awt/motif/X11GB2312\$$Encoder.class \
        sun/awt/motif/X11GBK.class \
        sun/awt/motif/X11GBK\$$Encoder.class \
        sun/awt/motif/X11KSC5601.class \
        sun/awt/motif/X11KSC5601\$$Decoder.class \
        sun/awt/motif/X11KSC5601\$$Encoder.class \

(which were modified to fix 8009029) and later:

ifneq ($(OPENJDK_TARGET_OS), windows)
    CHARSETS_EXTRA_FILES:=sun/awt/motif/X11GBK.class \
                          sun/awt/motif/X11GB2312\$$$$Decoder.class \
                          sun/awt/motif/X11GB2312.class \
                          sun/awt/motif/X11KSC5601\$$$$Decoder.class \
                          sun/awt/motif/X11KSC5601\$$$$Encoder.class \
                          sun/awt/motif/X11GB2312\$$$$Encoder.class \
                          sun/awt/motif/X11GBK\$$$$Encoder.class \
                          sun/awt/motif/X11KSC5601.class
endif

So the same file names are listed once with \$$ and once with \$$$$, and they both have to be that way to work!

This is untenable. There should only be one way to write the name of a nested class file inside the makefile.

FYI in Profiles.gmk when expanding foo/*.class I already had to do a similar substitution as is now in ListPathsSafely:

# Function to expand foo/*.class into the set of classes
# NOTE: Classfiles with $ in their name are problematic as that is the
# meta-character for both make and the shell! Hence the \$$$$ substitution.
# But note that if you echo these values they will NOT display as expected.
class_list =  $(patsubst $(JDK_OUTPUTDIR)/classes/%,%,\
$(foreach i,$(1), $(subst $$,\$$$$, $(wildcard $(JDK_OUTPUTDIR)/classes/$i))))


So I'd like to understand why the nashorn change was made so that we can determine how to get back to only having one way to specify file names containing $

David
-----


Reply via email to