diff options
Diffstat (limited to 'libjava/Makefile.am')
-rw-r--r-- | libjava/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libjava/Makefile.am b/libjava/Makefile.am index ccff51ba90a..6a7e1198907 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 $< $@ |