summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2014-05-15 19:50:25 +0000
committerTom Stellard <thomas.stellard@amd.com>2014-05-15 19:50:25 +0000
commit522a941c17906c7c2d1b62504c04ea9b0a7cf193 (patch)
tree96fdc970dbcaff05c0a1f8e82711a1513d19ec3b
parent1564bf7dbe371c219f544fa45adcb6c249a9391c (diff)
downloadllvm-522a941c17906c7c2d1b62504c04ea9b0a7cf193.tar.gz
llvm-522a941c17906c7c2d1b62504c04ea9b0a7cf193.tar.bz2
llvm-522a941c17906c7c2d1b62504c04ea9b0a7cf193.tar.xz
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/trunk@208908 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 5273e44ee0..941797107c 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -1238,7 +1238,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::