From 5d954a3c263a5a8f3f0a9be31b3c69c8b1d9de99 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Sun, 31 May 2015 15:22:30 +0700 Subject: [PATCH] Fix path for installation of RelaxNG files --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f004c28e91..e335dfd575 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -203,7 +203,7 @@ set_target_properties(${program} PROPERTIES #=============================================================================== install(TARGETS ${program} RUNTIME DESTINATION bin) -install(DIRECTORY relaxng DESTINATION share) +install(DIRECTORY src/relaxng DESTINATION share/openmc) install(FILES man/man1/openmc.1 DESTINATION share/man/man1) install(FILES LICENSE DESTINATION "share/doc/${program}/copyright")