You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by ad...@apache.org on 2016/08/01 22:40:16 UTC

kudu git commit: [doxygen] made DESTDIR applicable for ninja builds

Repository: kudu
Updated Branches:
  refs/heads/master 8301d27d4 -> 980b75193


[doxygen] made DESTDIR applicable for ninja builds

Moved the DESTDIR parameter into the environment to make
the 'doxygen' target buildable under ninja as well.

Change-Id: I22867e66f03b5d355d884f667ed88f85ba429bba
Reviewed-on: http://gerrit.cloudera.org:8080/3825
Tested-by: Kudu Jenkins
Reviewed-by: Adar Dembo <ad...@cloudera.com>


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/980b7519
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/980b7519
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/980b7519

Branch: refs/heads/master
Commit: 980b75193f3fc23bc7d4052caa9b4cecea88e39d
Parents: 8301d27
Author: Alexey Serbin <as...@cloudera.com>
Authored: Mon Aug 1 14:39:57 2016 -0700
Committer: Adar Dembo <ad...@cloudera.com>
Committed: Mon Aug 1 22:39:44 2016 +0000

----------------------------------------------------------------------
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/980b7519/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e4db18a..055817d 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -980,7 +980,7 @@ if (UNIX)
     configure_file(docs/support/doxygen/client_api.doxy.in ${DOXY_CLIENT_API_CFG} @ONLY)
     add_custom_target(doxy_install_client_alt_destdir
       COMMAND ${CMAKE_COMMAND} -E remove_directory ${DOXY_CLIENT_DESTDIR}
-      COMMAND ${CMAKE_MAKE_PROGRAM} install DESTDIR=${DOXY_CLIENT_DESTDIR}
+      COMMAND DESTDIR=${DOXY_CLIENT_DESTDIR} ${CMAKE_MAKE_PROGRAM} install
       COMMENT "Installing Kudu client files into temporary destroot"
     )
     add_custom_target(doxygen