summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2008-03-04 22:25:45 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2008-03-04 22:25:45 +0000
commit4e2974d2e7ae56365142789aac83ab0104027672 (patch)
tree6ca5f9651d9b96b94118d2ffec9c3a08f50561f5
parent04846ffa0396d1c741d42e20aa99bb0e33ade518 (diff)
downloadclasspath-4e2974d2e7ae56365142789aac83ab0104027672.tar.gz
2008-03-03 Andrew John Hughes <gnu_andrew@member.fsf.org>
* tools/Makefile.am: Distribute property files.
-rw-r--r--ChangeLog27
-rwxr-xr-xtools/Makefile.am28
2 files changed, 39 insertions, 16 deletions
diff --git a/ChangeLog b/ChangeLog
index 0677a8d7e..ce4c4759f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,16 +1,21 @@
+2008-03-03 Andrew John Hughes <gnu_andrew@member.fsf.org>
+
+ * tools/Makefile.am:
+ Distribute property files.
+
2008-03-04 Robert Schuster <robertschuster@fsfe.org>
- * gnu/xml/stream/AttributeImpl.java: Changed type field to String.
- (getDTDType): Changed return type to String.
- * gnu/xml/stream/XMLEventAllocatorImpl.java:
- (allocate): Removed wrapping of string in QName object.
- * gnu/xml/stream/XMLEventFactoryImpl.java:
- (createAttribute(String, String)): Removed wrapping of string in
- QName object.
- (createAttribute(QName, String)): Dito.
- (createAttribute(String, String, String, String)): Dito.
- * javax/xml/stream/events/Attribute.java:
- (getDTDType): Changed return type to String.
+ * gnu/xml/stream/AttributeImpl.java: Changed type field to String.
+ (getDTDType): Changed return type to String.
+ * gnu/xml/stream/XMLEventAllocatorImpl.java:
+ (allocate): Removed wrapping of string in QName object.
+ * gnu/xml/stream/XMLEventFactoryImpl.java:
+ (createAttribute(String, String)): Removed wrapping of string in
+ QName object.
+ (createAttribute(QName, String)): Ditto.
+ (createAttribute(String, String, String, String)): Ditto.
+ * javax/xml/stream/events/Attribute.java:
+ (getDTDType): Changed return type to String.
2008-03-03 Andrew John Hughes <gnu_andrew@member.fsf.org>
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 6dd92abd3..e3d0d8871 100755
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -108,17 +108,35 @@ TOOLS_JAVA_FILES = $(srcdir)/gnu/classpath/tools/*/*.java \
$(srcdir)/external/asm/org/objectweb/asm/util/attrs/*.java \
$(srcdir)/external/asm/org/objectweb/asm/xml/*.java
+# Properties files that must be included in the generated zip file.
+PROPERTY_FILES = $(srcdir)/external/asm/org/objectweb/asm/optimizer/shrink.properties \
+ $(srcdir)/resource/com/sun/tools/javac/messages.properties \
+ $(srcdir)/resource/gnu/classpath/tools/jar/messages.properties \
+ $(srcdir)/resource/gnu/classpath/tools/orbd/messages.properties \
+ $(srcdir)/resource/gnu/classpath/tools/rmic/messages.properties \
+ $(srcdir)/resource/gnu/classpath/tools/rmid/messages.properties \
+ $(srcdir)/resource/gnu/classpath/tools/serialver/messages.properties \
+ $(srcdir)/resource/gnu/classpath/tools/keytool/messages.properties \
+ $(srcdir)/resource/gnu/classpath/tools/native2ascii/messages.properties \
+ $(srcdir)/resource/gnu/classpath/tools/appletviewer/messages.properties \
+ $(srcdir)/resource/gnu/classpath/tools/common/Messages.properties \
+ $(srcdir)/resource/gnu/classpath/tools/getopt/Messages.properties \
+ $(srcdir)/resource/gnu/classpath/tools/tnameserv/messages.properties \
+ $(srcdir)/resource/gnu/classpath/tools/jarsigner/messages.properties \
+ $(srcdir)/resource/gnu/classpath/tools/rmiregistry/messages.properties \
+ $(srcdir)/resource/sun/rmi/rmic/messages.properties
+
+# RMIC templates that must be included in the generated zip file.
+RMIC_TEMPLATES = $(srcdir)/resource/gnu/classpath/tools/rmic/templates/*.jav
+
# The zip files with classes we want to produce.
TOOLS_ZIP = tools.zip
# Extra objects that will not exist until configure-time
BUILT_SOURCES = $(TOOLS_ZIP)
-# RMIC templates that must be included in the generated zip file.
-RMIC_TEMPLATES = $(srcdir)/resource/gnu/classpath/tools/rmic/templates/*.jav
-
# All the files we find "interesting"
-ALL_TOOLS_FILES = $(TOOLS_JAVA_FILES) $(RMIC_TEMPLATES)
+ALL_TOOLS_FILES = $(TOOLS_JAVA_FILES) $(RMIC_TEMPLATES) $(PROPERTY_FILES)
# Some architecture independent data to be installed.
TOOLS_DATA = $(TOOLS_ZIP)
@@ -144,7 +162,7 @@ dist-hook:
# the class files. Always regenerate all .class files and remove them
# immediately. And copy the template files we use to the classes dir
# so they get also included.
-$(TOOLS_ZIP): $(TOOLS_JAVA_FILES)
+$(TOOLS_ZIP): $(ALL_TOOLS_FILES)
@rm -rf classes asm
mkdir classes asm
## Compile ASM separately as it is latin-1 encoded.