This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
fix deps for java manpage installation
- From: gkeating at apple dot com (Geoffrey Keating)
- To: gcc-patches at gcc dot gnu dot org
- Date: Mon, 16 Feb 2004 21:19:54 -0800 (PST)
- Subject: fix deps for java manpage installation
My previous patch didn't have all the right dependencies; David
Edelsohn managed to install in such a way as to notice this.
Fixed thusly. Bootstrapped on powerpc-darwin, and David says it works
for him.
--
- Geoffrey Keating <geoffk@apple.com>
===File ~/patches/gcc-java-manpagedeps.patch================
2004-02-16 Geoffrey Keating <geoffk@apple.com>
* Make-lang.in (java.install-man): Add extra dependencies.
Index: java/Make-lang.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/java/Make-lang.in,v
retrieving revision 1.135
diff -u -p -u -p -r1.135 Make-lang.in
--- java/Make-lang.in 13 Feb 2004 23:05:02 -0000 1.135
+++ java/Make-lang.in 17 Feb 2004 05:16:34 -0000
@@ -396,7 +396,9 @@ rmiregistry.pod: java/gcj.texi
# Install the man pages.
java.install-man: installdirs \
- $(DESTDIR)$(man1dir)/$(JAVA_INSTALL_NAME)$(man1ext)
+ $(DESTDIR)$(man1dir)/$(JAVA_INSTALL_NAME)$(man1ext) \
+ $(JAVA_TARGET_INDEPENDENT_BIN_TOOLS:%=doc/%.1) \
+ doc/gij.1 doc/jv-convert.1 doc/rmic.1 doc/rmiregistry.1
for tool in $(JAVA_TARGET_INDEPENDENT_BIN_TOOLS) \
gij jv-convert rmic rmiregistry ; do \
tool_transformed_name=`echo $$tool|sed '$(program_transform_name)'`; \
============================================================