diff options
author | Keno Fischer <kfischer@college.harvard.edu> | 2015-07-15 22:39:44 +0000 |
---|---|---|
committer | Keno Fischer <kfischer@college.harvard.edu> | 2015-07-15 22:39:44 +0000 |
commit | ac351b7943ebfd90ec3df2645454a4ce1bc0f0a4 (patch) | |
tree | a1157bfaf98150ef7c7f7d56d23c4c3a389da42c | |
parent | ef0e64758148da6017537541953b05780ea3998f (diff) | |
download | bcm5719-llvm-ac351b7943ebfd90ec3df2645454a4ce1bc0f0a4.tar.gz bcm5719-llvm-ac351b7943ebfd90ec3df2645454a4ce1bc0f0a4.zip |
[Makefiles] One more library rename to align with CMake
This one I accidentally missed last time because I confused it with
the lldbUtility library. After this, all makefile libraries should
have the same names as their CMake counterparts.
llvm-svn: 242344
-rw-r--r-- | lldb/lib/Makefile | 2 | ||||
-rw-r--r-- | lldb/source/Plugins/Process/Utility/Makefile | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lldb/lib/Makefile b/lldb/lib/Makefile index e843b88e359..f5c343e99cf 100644 --- a/lldb/lib/Makefile +++ b/lldb/lib/Makefile @@ -73,7 +73,7 @@ USEDLIBS = lldbAPI.a \ lldbPluginSystemRuntimeMacOSX.a \ lldbPluginUnwindAssemblyInstEmulation.a \ lldbPluginUnwindAssemblyX86.a \ - lldbPluginUtility.a \ + lldbPluginProcessUtility.a \ lldbSymbol.a \ lldbTarget.a \ lldbUtility.a \ diff --git a/lldb/source/Plugins/Process/Utility/Makefile b/lldb/source/Plugins/Process/Utility/Makefile index f82fa88eddb..eb0caf3f92f 100644 --- a/lldb/source/Plugins/Process/Utility/Makefile +++ b/lldb/source/Plugins/Process/Utility/Makefile @@ -1,14 +1,14 @@ ##===- source/Plugins/Utility/Makefile ---------------------*- Makefile -*-===## -# +# # The LLVM Compiler Infrastructure # # This file is distributed under the University of Illinois Open Source # License. See LICENSE.TXT for details. -# +# ##===----------------------------------------------------------------------===## LLDB_LEVEL := ../../../.. -LIBRARYNAME := lldbPluginUtility +LIBRARYNAME := lldbPluginProcessUtility BUILD_ARCHIVE = 1 include $(LLDB_LEVEL)/Makefile |