aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-02-10 14:12:11 +0100
committerGitHub <noreply@github.com>2020-02-10 14:12:11 +0100
commit9c6422a358170e70cab253c0169aecfee32a746a (patch)
tree40e3100f888682d667137f2df2a5085116c3d43f
parenta0db4db00f1a426741b09b2bc77ed06a87d930b9 (diff)
parent8adc3470d2da4b36e4e6e7f3d20cdf7d09fdfd16 (diff)
Merge pull request #12126 from vespa-engine/toregge/remove-unneeded-slash-in-symlink-name
Remove unneeded slash in symlink name.
-rw-r--r--functions.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.cmake b/functions.cmake
index fc6fbc0b146..43dd2d30853 100644
--- a/functions.cmake
+++ b/functions.cmake
@@ -558,7 +558,7 @@ function(install_fat_java_artifact NAME)
endfunction()
function(install_absolute_symlink TARGET LINK)
- install(CODE "execute_process(COMMAND ln -snf ${TARGET} \$ENV{DESTDIR}/${CMAKE_INSTALL_PREFIX}/${LINK})")
+ install(CODE "execute_process(COMMAND ln -snf ${TARGET} \$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/${LINK})")
endfunction(install_absolute_symlink)
function(install_symlink TARGET LINK)