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 <[email protected]> ------------------------------------------------------------------------ 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:: _______________________________________________ llvm-branch-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvm-branch-commits
