Repository: thrift Updated Branches: refs/heads/master 9caf6d63c -> 791ee36f7
THRIFT-1385 make install doesn't install java library in the setted folder Signed-off-by: Verdoïa Laurent Reviewed-by: Tom Lippincott Project: http://git-wip-us.apache.org/repos/asf/thrift/repo Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/791ee36f Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/791ee36f Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/791ee36f Branch: refs/heads/master Commit: 791ee36f7b5dbba1c74d7a4b1ddb43c43516e769 Parents: 9caf6d6 Author: Roger Meier <[email protected]> Authored: Sun Dec 6 11:37:37 2015 +0100 Committer: Roger Meier <[email protected]> Committed: Sun Dec 6 11:37:37 2015 +0100 ---------------------------------------------------------------------- configure.ac | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/thrift/blob/791ee36f/configure.ac ---------------------------------------------------------------------- diff --git a/configure.ac b/configure.ac index 37f19c9..ddbf24f 100755 --- a/configure.ac +++ b/configure.ac @@ -34,10 +34,8 @@ AC_ARG_VAR([PY_PREFIX], [Prefix for installing Python modules. AS_IF([test "x$PY_PREFIX" = x], [PY_PREFIX="/usr"]) AC_ARG_VAR([JAVA_PREFIX], [Prefix for installing the Java lib jar. - (Normal --prefix is ignored for Java because - Java has different conventions.) - Default = "/usr/local/lib"]) -AS_IF([test "x$JAVA_PREFIX" = x], [JAVA_PREFIX="/usr/local/lib"]) + Default = "PREFIX/usr/local/lib"]) +AS_IF([test "x$JAVA_PREFIX" = x], [JAVA_PREFIX="$prefix/usr/local/lib"]) AC_ARG_VAR([RUBY_PREFIX], [Prefix for installing Ruby modules. (Normal --prefix is ignored for Ruby because
