aboutsummaryrefslogtreecommitdiffstats
path: root/functions.cmake
diff options
context:
space:
mode:
authorArnstein Ressem <aressem@yahoo-inc.com>2017-10-20 09:42:57 +0200
committerArnstein Ressem <aressem@yahoo-inc.com>2017-10-20 09:42:57 +0200
commitf576f75daf93e49a122ae9148449a522e362bdc6 (patch)
treefe1c49840211bb5b10b3261c57ebdd031b8ee629 /functions.cmake
parent58907c9e2345b01daa4908ed009d1603366203c4 (diff)
Config definitions moved to another location.
Diffstat (limited to 'functions.cmake')
-rw-r--r--functions.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions.cmake b/functions.cmake
index 1c3d1ff7a6e..f3d28bb1a0f 100644
--- a/functions.cmake
+++ b/functions.cmake
@@ -539,9 +539,9 @@ endfunction()
function(install_config_definition)
if(ARGC GREATER 1)
- install(FILES ${ARGV0} RENAME ${ARGV1} DESTINATION var/db/vespa/config_server/serverdb/classes)
+ install(FILES ${ARGV0} RENAME ${ARGV1} DESTINATION share/vespa/configdefinitions)
else()
- install(FILES ${ARGV0} DESTINATION var/db/vespa/config_server/serverdb/classes)
+ install(FILES ${ARGV0} DESTINATION share/vespa/configdefinitions)
endif()
endfunction()