This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java 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]

[PATCH] Fix make install mandir=/foo/bar/man


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


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