From 09f6cdc10b9f4f0c6f1bc908e163d1b0a0257e9c Mon Sep 17 00:00:00 2001 From: Jim Crist Date: Thu, 4 Jan 2018 16:23:48 -0600 Subject: [PATCH] Move install location of LICENSE/NOTICE Currently these are put in the root directory on `make install`, which is not where they should go. Moves them to `share/doc/orc/`. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 564d417d2e..fee242fca5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -110,7 +110,7 @@ add_subdirectory(c++) install( FILES LICENSE NOTICE - DESTINATION .) + DESTINATION "share/doc/orc") if (BUILD_JAVA) add_subdirectory(java)