aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2007-01-30 22:53:40 +0000
committerTom Tromey <tromey@gcc.gnu.org>2007-01-30 22:53:40 +0000
commitd43b573e775652711a3fd046dbff5b62a3c85e98 (patch)
tree7b8339ab052cc499df1b68d50b10069516042781
parent78bdbc0647e285da79a8ca08c799c4638c7d6309 (diff)
downloadgcc-d43b573e775652711a3fd046dbff5b62a3c85e98.zip
gcc-d43b573e775652711a3fd046dbff5b62a3c85e98.tar.gz
gcc-d43b573e775652711a3fd046dbff5b62a3c85e98.tar.bz2
Makefile.in: Rebuilt.
* Makefile.in: Rebuilt. * Makefile.am (libgcj-$(gcc_version).jar): Rewrote. From-SVN: r121363
-rw-r--r--libjava/ChangeLog5
-rw-r--r--libjava/Makefile.am6
-rw-r--r--libjava/Makefile.in6
3 files changed, 13 insertions, 4 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog
index 5cd30df..123edd3 100644
--- a/libjava/ChangeLog
+++ b/libjava/ChangeLog
@@ -1,3 +1,8 @@
+2007-01-30 Tom Tromey <tromey@redhat.com>
+
+ * Makefile.in: Rebuilt.
+ * Makefile.am (libgcj-$(gcc_version).jar): Rewrote.
+
2007-01-30 Andreas Tobler <a.tobler@schweiz.org>
* testsuite/libjava.jvmti/natevents.cc (FieldModificationCB): Use a
diff --git a/libjava/Makefile.am b/libjava/Makefile.am
index ccff51b..6a7e119 100644
--- a/libjava/Makefile.am
+++ b/libjava/Makefile.am
@@ -332,8 +332,10 @@ $(propertyo_files): %.lo: classpath/resource/%
libgcj-$(gcc_version).jar: classpath/lib/compile-classes
## Note that this now omits the property files.
## It doesn't matter since we don't use the jar at runtime.
- here=`pwd`; cd $(srcdir)/classpath/lib; $(JAR) -cfM \
- $$here/libgcj-$(gcc_version).jar gnu java javax org sun
+ here=`pwd`; cd $(srcdir)/classpath/lib; \
+ find gnu java javax org sun -name '*.class' -print | \
+ fgrep -v .svn | \
+ $(JAR) -cfM@ $$here/libgcj-$(gcc_version).jar
libgcj-tools-$(gcc_version).jar: classpath/tools/tools.zip
cp $< $@
diff --git a/libjava/Makefile.in b/libjava/Makefile.in
index f6e5b41..ff6b942 100644
--- a/libjava/Makefile.in
+++ b/libjava/Makefile.in
@@ -9901,8 +9901,10 @@ $(propertyo_files): %.lo: classpath/resource/%
$(LTGCJCOMPILE) -o $@ -c $< -Wc,--resource,$(@:.lo=)
libgcj-$(gcc_version).jar: classpath/lib/compile-classes
- here=`pwd`; cd $(srcdir)/classpath/lib; $(JAR) -cfM \
- $$here/libgcj-$(gcc_version).jar gnu java javax org sun
+ here=`pwd`; cd $(srcdir)/classpath/lib; \
+ find gnu java javax org sun -name '*.class' -print | \
+ fgrep -v .svn | \
+ $(JAR) -cfM@ $$here/libgcj-$(gcc_version).jar
libgcj-tools-$(gcc_version).jar: classpath/tools/tools.zip
cp $< $@