diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-31 22:53:06 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-31 22:53:06 +0000 |
commit | 8dce0ad40ef06cce7f2fb220c5ea928fe4153d3d (patch) | |
tree | 7768412eef06bcab015a7512ca767775ee194942 | |
parent | ab8544aa757c1ca930125a64b0e36bf50dbf8aa9 (diff) |
Get the shared library extension right on all platforms, regardless of what
Chris wants on his platform.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17379 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Makefile.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules index 71be0e8aaf..515cfc37a6 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -452,7 +452,7 @@ ifdef SHARED_LIBRARY all-local:: $(LibName.LA) $(LibName.LA): $(BUILT_SOURCES) $(ObjectsLO) $(LibDir)/.dir - $(Echo) Linking $(Configuration) Shared Library $(LIBRARYNAME).so + $(Echo) Linking $(Configuration) Shared Library $(LIBRARYNAME)$(SHLIBEXT) $(Verb) $(Link) -o $@ $(ObjectsLO) $(Verb) $(LTInstall) $@ $(LibDir) |