From 424dc50a360ef39780bf4ca72d47faa21af0128b Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Thu, 14 Jul 2011 00:04:07 -0400 Subject: [PATCH] Command - install - Temporarily removed CmdInstall from the build. This is deferred until 2.1 or so, when extensions are supported. --- src/commands/CMakeLists.txt | 1 - src/commands/Command.cpp | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/commands/CMakeLists.txt b/src/commands/CMakeLists.txt index 9ac751536..d0967ef69 100644 --- a/src/commands/CMakeLists.txt +++ b/src/commands/CMakeLists.txt @@ -29,7 +29,6 @@ set (commands_SRCS Command.cpp Command.h CmdIDs.cpp CmdIDs.h CmdImport.cpp CmdImport.h CmdInfo.cpp CmdInfo.h - CmdInstall.cpp CmdInstall.h CmdLog.cpp CmdLog.h CmdLogo.cpp CmdLogo.h CmdMerge.cpp CmdMerge.h diff --git a/src/commands/Command.cpp b/src/commands/Command.cpp index d6848ac3a..788ef95d9 100644 --- a/src/commands/Command.cpp +++ b/src/commands/Command.cpp @@ -60,7 +60,7 @@ #include #include #include -#include +//#include #include #include #include @@ -126,7 +126,7 @@ void Command::factory (std::map & all) c = new CmdIDs (); all[c->keyword ()] = c; c = new CmdImport (); all[c->keyword ()] = c; c = new CmdInfo (); all[c->keyword ()] = c; - c = new CmdInstall (); all[c->keyword ()] = c; +// c = new CmdInstall (); all[c->keyword ()] = c; c = new CmdLog (); all[c->keyword ()] = c; c = new CmdLogo (); all[c->keyword ()] = c; c = new CmdMerge (); all[c->keyword ()] = c;