This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[PATCH] Fix make install mandir=/foo/bar/man
- From: Jakub Jelinek <jakub at redhat dot com>
- To: Tom Tromey <tromey at redhat dot com>
- Cc: java-patches at gcc dot gnu dot org
- Date: Wed, 14 Mar 2007 07:28:50 -0500
- Subject: [PATCH] Fix make install mandir=/foo/bar/man
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
Hi!
The recent java/classpath/doc/Makefile.{am,in} changes broke
make install with explicit mandir= set on the command line.
The following patch fixes that, ok to commit?
Toplevel Makefile already propagates mandir down, it is just that
libjava's Makefile does not.
--- libjava/Makefile.am.jj 2007-03-12 08:19:49.000000000 +0100
+++ libjava/Makefile.am 2007-03-13 08:12:51.000000000 +0100
@@ -1065,6 +1065,7 @@ AM_MAKEFLAGS = \
"exec_prefix=$(exec_prefix)" \
"infodir=$(infodir)" \
"libdir=$(libdir)" \
+ "mandir=$(mandir)" \
"prefix=$(prefix)" \
"gxx_include_dir=$(gxx_include_dir)" \
"AR=$(AR)" \
--- libjava/Makefile.in.jj 2007-03-12 08:19:49.000000000 +0100
+++ libjava/Makefile.in 2007-03-13 08:12:38.000000000 +0100
@@ -8013,6 +8013,7 @@ AM_MAKEFLAGS = \
"exec_prefix=$(exec_prefix)" \
"infodir=$(infodir)" \
"libdir=$(libdir)" \
+ "mandir=$(mandir)" \
"prefix=$(prefix)" \
"gxx_include_dir=$(gxx_include_dir)" \
"AR=$(AR)" \
Jakub