Skip to content

Commit

Permalink
autoconf: Fix libLLVM-Major-Minor-Patch.so symlink
Browse files Browse the repository at this point in the history
The symlink needs to point to a relative path, so we don't break
building in a chroot.

Tested-by: Laurent Carlier <[email protected]>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208908 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
tstellarAMD committed May 15, 2014
1 parent 1564bf7 commit 522a941
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.rules
Original file line number Diff line number Diff line change
Expand Up @@ -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::
Expand Down

0 comments on commit 522a941

Please sign in to comment.