summaryrefslogtreecommitdiffstats
path: root/functions.cmake
diff options
context:
space:
mode:
authorHåkon Hallingstad <hakon@yahooinc.com>2022-05-20 16:17:46 +0200
committerHåkon Hallingstad <hakon@yahooinc.com>2022-05-20 16:17:46 +0200
commit479a1dd853675e5511417e9fd77cd9826c471fe6 (patch)
tree5add6d23478e02a7390f990b0e799542154f173c /functions.cmake
parent3cb909475ff27332e3bdc85543286b9b95e2523e (diff)
Avoid double-target in install_configserver_component
Diffstat (limited to 'functions.cmake')
-rw-r--r--functions.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.cmake b/functions.cmake
index 6dea158c6ae..3721d26d0df 100644
--- a/functions.cmake
+++ b/functions.cmake
@@ -682,7 +682,7 @@ function(install_configserver_component NAME)
if(NOT PARAM_CLASSIFIER)
SET(PARAM_CLASSIFIER "jar-with-dependencies")
endif()
- install_jar("target/${NAME}-${PARAM_CLASSIFIER}.jar")
+ install_jar("${NAME}-${PARAM_CLASSIFIER}.jar")
install_app_component_symlink(configserver-app "${NAME}" CLASSIFIER "${PARAM_CLASSIFIER}")
endfunction()