diff options
author | Dan Gohman <gohman@apple.com> | 2010-06-28 15:55:15 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-06-28 15:55:15 +0000 |
commit | 062f7f10f9a89e43421d3dc9ef0728831aa1befa (patch) | |
tree | ba0c6b9f755c9545e47f41112a8d44c41775fe19 /Makefile.rules | |
parent | c4abe3aaaf45f69387b8cf55f1870ea416586290 (diff) |
Fix this build message so that it displays the correct library
name, specifically the "lib" prefix.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107011 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r-- | Makefile.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules index ed8fe04d53..14b5ce9719 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -1131,7 +1131,7 @@ $(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS) else $(LibName.SO): $(ObjectsO) $(LibDir)/.dir - $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT) + $(Echo) Linking $(BuildMode) Shared Library $(basename $@) $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) endif |