[llvm-commits] [llvm] r107011 - /llvm/trunk/Makefile.rules
Dan Gohman
gohman at apple.com
Mon Jun 28 08:55:15 PDT 2010
Author: djg
Date: Mon Jun 28 10:55:15 2010
New Revision: 107011
URL: http://llvm.org/viewvc/llvm-project?rev=107011&view=rev
Log:
Fix this build message so that it displays the correct library
name, specifically the "lib" prefix.
Modified:
llvm/trunk/Makefile.rules
Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=107011&r1=107010&r2=107011&view=diff
==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Mon Jun 28 10:55:15 2010
@@ -1131,7 +1131,7 @@
$(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
More information about the llvm-commits
mailing list