[Lldb-commits] [lldb] r105906 - /lldb/trunk/source/Interpreter/CommandInterpreter.cpp

Eli Friedman eli.friedman at gmail.com
Sat Jun 12 19:17:17 PDT 2010


Author: efriedma
Date: Sat Jun 12 21:17:17 2010
New Revision: 105906

URL: http://llvm.org/viewvc/llvm-project?rev=105906&view=rev
Log:
Fix include paths; please check that this works on Mac.


Modified:
    lldb/trunk/source/Interpreter/CommandInterpreter.cpp

Modified: lldb/trunk/source/Interpreter/CommandInterpreter.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/CommandInterpreter.cpp?rev=105906&r1=105905&r2=105906&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/CommandInterpreter.cpp (original)
+++ lldb/trunk/source/Interpreter/CommandInterpreter.cpp Sat Jun 12 21:17:17 2010
@@ -12,42 +12,42 @@
 #include <getopt.h>
 #include <stdlib.h>
 
-#include "CommandObjectAdd.h"
-#include "CommandObjectAlias.h"
-#include "CommandObjectAppend.h"
-#include "CommandObjectApropos.h"
-#include "CommandObjectArgs.h"
-#include "CommandObjectBreakpoint.h"
-#include "CommandObjectCall.h"
-#include "CommandObjectDelete.h"
-#include "CommandObjectDisassemble.h"
-#include "CommandObjectExpression.h"
-#include "CommandObjectFile.h"
-#include "CommandObjectFrame.h"
-#include "CommandObjectHelp.h"
-#include "CommandObjectImage.h"
-#include "CommandObjectInfo.h"
-#include "CommandObjectLog.h"
-#include "CommandObjectMemory.h"
-#include "CommandObjectProcess.h"
-#include "CommandObjectQuit.h"
+#include "../Commands/CommandObjectAdd.h"
+#include "../Commands/CommandObjectAlias.h"
+#include "../Commands/CommandObjectAppend.h"
+#include "../Commands/CommandObjectApropos.h"
+#include "../Commands/CommandObjectArgs.h"
+#include "../Commands/CommandObjectBreakpoint.h"
+#include "../Commands/CommandObjectCall.h"
+#include "../Commands/CommandObjectDelete.h"
+#include "../Commands/CommandObjectDisassemble.h"
+#include "../Commands/CommandObjectExpression.h"
+#include "../Commands/CommandObjectFile.h"
+#include "../Commands/CommandObjectFrame.h"
+#include "../Commands/CommandObjectHelp.h"
+#include "../Commands/CommandObjectImage.h"
+#include "../Commands/CommandObjectInfo.h"
+#include "../Commands/CommandObjectLog.h"
+#include "../Commands/CommandObjectMemory.h"
+#include "../Commands/CommandObjectProcess.h"
+#include "../Commands/CommandObjectQuit.h"
 #include "lldb/Interpreter/CommandObjectRegexCommand.h"
-#include "CommandObjectRegister.h"
-#include "CommandObjectRemove.h"
+#include "../Commands/CommandObjectRegister.h"
+#include "../Commands/CommandObjectRemove.h"
 #include "CommandObjectScript.h"
-#include "CommandObjectSelect.h"
-#include "CommandObjectSet.h"
-#include "CommandObjectSettings.h"
-#include "CommandObjectShow.h"
-#include "CommandObjectSource.h"
-#include "CommandObjectSourceFile.h"
-#include "CommandObjectStatus.h"
-#include "CommandObjectSyntax.h"
-#include "CommandObjectTarget.h"
-#include "CommandObjectThread.h"
-#include "CommandObjectTranslate.h"
-#include "CommandObjectUnalias.h"
-#include "CommandObjectVariable.h"
+#include "../Commands/CommandObjectSelect.h"
+#include "../Commands/CommandObjectSet.h"
+#include "../Commands/CommandObjectSettings.h"
+#include "../Commands/CommandObjectShow.h"
+#include "../Commands/CommandObjectSource.h"
+#include "../Commands/CommandObjectSourceFile.h"
+#include "../Commands/CommandObjectStatus.h"
+#include "../Commands/CommandObjectSyntax.h"
+#include "../Commands/CommandObjectTarget.h"
+#include "../Commands/CommandObjectThread.h"
+#include "../Commands/CommandObjectTranslate.h"
+#include "../Commands/CommandObjectUnalias.h"
+#include "../Commands/CommandObjectVariable.h"
 
 #include "lldb/Core/Args.h"
 #include "lldb/Core/Debugger.h"





More information about the lldb-commits mailing list