This is an automated email from the ASF dual-hosted git repository. alexey pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/kudu.git
commit 4c661c78dcf87025032542fbbc8476e088138b23 Author: Alexey Serbin <[email protected]> AuthorDate: Wed Nov 25 16:56:42 2020 -0800 [client] reorder exported header files in makefile I found it easier to follow the list of exported files on filesystem compared with the corresponding list in CMakeLists.txt when the filenames are ordered alphabetically. This patch doesn't contain any functional changes. This is a follow-up to ece7b5653998db318e4baa5d57f27ba3a836731d. Change-Id: I25ac0cf82c621bfe3dfb92398b0ad725f3ceb19a Reviewed-on: http://gerrit.cloudera.org:8080/16786 Reviewed-by: Mahesh Reddy <[email protected]> Tested-by: Kudu Jenkins Reviewed-by: Grant Henke <[email protected]> --- src/kudu/client/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kudu/client/CMakeLists.txt b/src/kudu/client/CMakeLists.txt index a9b0ed3..53344f1 100644 --- a/src/kudu/client/CMakeLists.txt +++ b/src/kudu/client/CMakeLists.txt @@ -184,6 +184,7 @@ install(FILES client.h columnar_scan_batch.h hash.h + resource_metrics.h row_result.h scan_batch.h scan_predicate.h @@ -192,7 +193,6 @@ install(FILES stubs.h value.h write_op.h - resource_metrics.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/kudu/client) # Headers: common
