Command - install

- Temporarily removed CmdInstall from the build.  This is deferred
  until 2.1 or so, when extensions are supported.
This commit is contained in:
Paul Beckingham 2011-07-14 00:04:07 -04:00
parent 8827f9c978
commit 424dc50a36
2 changed files with 2 additions and 3 deletions

View file

@ -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

View file

@ -60,7 +60,7 @@
#include <CmdIDs.h>
#include <CmdImport.h>
#include <CmdInfo.h>
#include <CmdInstall.h>
//#include <CmdInstall.h>
#include <CmdLog.h>
#include <CmdLogo.h>
#include <CmdMerge.h>
@ -126,7 +126,7 @@ void Command::factory (std::map <std::string, Command*>& 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;