summaryrefslogtreecommitdiff
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
commitb04b00516fea37dddfa4d499e5672c203ff66cb1 (patch)
tree0536aedae18ca6bf691a79d60264226520750674
parentffecacb1a1eeca8ca8567057c3c886161837d2a6 (diff)
downloadllvm-b04b00516fea37dddfa4d499e5672c203ff66cb1.tar.gz
llvm-b04b00516fea37dddfa4d499e5672c203ff66cb1.tar.bz2
llvm-b04b00516fea37dddfa4d499e5672c203ff66cb1.tar.xz
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> ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_34@208917 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--Makefile.rules2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 18882faef7..fde77f9acf 100644
--- a/Makefile.rules
+++ b/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::