aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2014-05-15 20:56:00 +0000
committerTom Stellard <thomas.stellard@amd.com>2014-05-15 20:56:00 +0000
commitb358fb9d3263c0ba45ca6d5e10fbe1452da8c37c (patch)
treeee00cd10087ee460f936e25fe24b129156262ec3
parentd6d85825b8a2213e48c789ccdb803c8f4a25c4bc (diff)
downloadllvm-b358fb9d3263c0ba45ca6d5e10fbe1452da8c37c.zip
llvm-b358fb9d3263c0ba45ca6d5e10fbe1452da8c37c.tar.gz
llvm-b358fb9d3263c0ba45ca6d5e10fbe1452da8c37c.tar.bz2
Merging r208908:
------------------------------------------------------------------------ r208908 | thomas.stellard | 2014-05-15 15:50:25 -0400 (Thu, 15 May 2014) | 7 lines autoconf: Fix libLLVM-Major-Minor-Patch.so symlink The symlink needs to point to a relative path, so we don't break building in a chroot. Tested-by: Laurent Carlier <lordheavym@gmail.org> ------------------------------------------------------------------------ llvm-svn: 208917
-rw-r--r--llvm/Makefile.rules2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/Makefile.rules b/llvm/Makefile.rules
index 18882faef..fde77f9 100644
--- a/llvm/Makefile.rules
+++ b/llvm/Makefile.rules
@@ -1202,7 +1202,7 @@ $(DestSharedLib): $(LibName.SO) $(DestSharedLibDir)
$(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
ifdef SHARED_ALIAS
$(Echo) Creating alias from $(DestSharedLib) to $(DestSharedAlias)
- $(Verb) $(AliasTool) $(DestSharedLib) $(DestSharedAlias)
+ $(Verb) $(AliasTool) $(BaseLibName.SO) $(DestSharedAlias)
endif
uninstall-local::