diff options
author | Anthony Green <green@redhat.com> | 2000-08-26 19:25:13 +0000 |
---|---|---|
committer | Anthony Green <green@gcc.gnu.org> | 2000-08-26 19:25:13 +0000 |
commit | 6aaeb97551dcfaa5dbcca802782ec42dd7b4cf43 (patch) | |
tree | ec60dfe7b11606b3c5c1d32bb2b29e9dd37d5be1 /libjava/gcj | |
parent | 14fdf4b67e8843c870c88baac0c4974b2e67bb32 (diff) | |
download | gcc-6aaeb97551dcfaa5dbcca802782ec42dd7b4cf43.tar.gz |
Makefile.in: Rebuilt.
2000-08-26 Anthony Green <green@redhat.com>
* Makefile.in: Rebuilt.
* Makefile.am (java/lang/ClassLoader.h): Make _Jv_RunMain a
friend.
* prims.cc: Include ClassLoader.h.
(_Jv_RunMain): When executing jar files, classpath must be the jar
file only. Lose our reference to the system ClassLoader in order
to get a new one with the correct classpath.
* java/lang/natSystem.cc (init_properties): When executing a jar
file, only use the jar file for java.class.path.
* gnu/gcj/runtime/VMClassLoader.java: Use the canonical file name
for bytecode archives.
* gnu/gcj/runtime/FirstThread.java: Handle case where manifest
exists, but not Main-Class.
From-SVN: r35999
Diffstat (limited to 'libjava/gcj')
-rw-r--r-- | libjava/gcj/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/gcj/Makefile.in b/libjava/gcj/Makefile.in index 26fec338ae7..bd13f3d9e66 100644 --- a/libjava/gcj/Makefile.in +++ b/libjava/gcj/Makefile.in @@ -129,7 +129,7 @@ DIST_COMMON = Makefile.am Makefile.in DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) -TAR = tar +TAR = gtar GZIP_ENV = --best all: all-redirect .SUFFIXES: @@ -198,7 +198,7 @@ distdir: $(DISTFILES) @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ - cp -pr $$/$$file $(distdir)/$$file; \ + cp -pr $$d/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ |