This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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)'`; \
============================================================


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]