--- a/jdk/makefiles/GensrcCharsetCoder.gmk Wed Jul 05 18:22:17 2017 +0200
+++ b/jdk/makefiles/GensrcCharsetCoder.gmk Tue Sep 18 11:29:24 2012 -0700
@@ -36,8 +36,8 @@
$(GENSRC_CHARSETCODER_DST)/CharsetDecoder.java : $(GENSRC_CHARSETCODER_TEMPLATE)
$(MKDIR) -p $(@D)
- -$(RM) $@.temp
- $(TOOL_SPP) < $< >$@.temp \
+ -$(RM) $@.tmp
+ $(TOOL_SPP) < $< >$@.tmp \
-Kdecoder \
-DA='A' \
-Da='a' \
@@ -63,7 +63,7 @@
-DnotLegal='not legal for this charset' \
-Dotypes-per-itype='chars-per-byte' \
-DoutSequence='Unicode character'
- $(MV) $@.temp $@
+ $(MV) $@.tmp $@
GENSRC_CHARSETCODER += $(GENSRC_CHARSETCODER_DST)/CharsetDecoder.java
@@ -71,8 +71,8 @@
$(GENSRC_CHARSETCODER_DST)/CharsetEncoder.java : $(GENSRC_CHARSETCODER_TEMPLATE)
$(MKDIR) -p $(@D)
- -$(RM) $@.temp
- $(TOOL_SPP) < $< >$@.temp \
+ -$(RM) $@.tmp
+ $(TOOL_SPP) < $< >$@.tmp \
-Kencoder \
-DA='An' \
-Da='an' \
@@ -98,7 +98,7 @@
-DnotLegal='not a legal sixteen-bit Unicode sequence' \
-Dotypes-per-itype='bytes-per-char' \
-DoutSequence='byte sequence in the given charset'
- $(MV) $@.temp $@
+ $(MV) $@.tmp $@
GENSRC_CHARSETCODER += $(GENSRC_CHARSETCODER_DST)/CharsetEncoder.java