[llvm-branch-commits] [llvm-branch] r208917 - Merging r208908:

Tom Stellard thomas.stellard at amd.com
Thu May 15 13:56:00 PDT 2014


Author: tstellar
Date: Thu May 15 15:56:00 2014
New Revision: 208917

URL: http://llvm.org/viewvc/llvm-project?rev=208917&view=rev
Log:
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 at gmail.org>

------------------------------------------------------------------------

Modified:
    llvm/branches/release_34/Makefile.rules

Modified: llvm/branches/release_34/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_34/Makefile.rules?rev=208917&r1=208916&r2=208917&view=diff
==============================================================================
--- llvm/branches/release_34/Makefile.rules (original)
+++ llvm/branches/release_34/Makefile.rules Thu May 15 15:56:00 2014
@@ -1202,7 +1202,7 @@ $(DestSharedLib): $(LibName.SO) $(DestSh
 	$(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::





More information about the llvm-branch-commits mailing list