diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-12-14 22:41:17 -0500 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-12-14 22:41:17 -0500 |
commit | 27522269ff5507a6a25196e3329db7eea6a1fa2e (patch) | |
tree | c502a2c1299120df7778362634607c3bdb437667 /Source | |
parent | 69cb66f7ffd5541f60026135fa521f0369210bab (diff) | |
download | cmake-27522269ff5507a6a25196e3329db7eea6a1fa2e.tar.gz |
use -i not -k for make
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmBuildCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmBuildCommand.cxx b/Source/cmBuildCommand.cxx index bc4bcbab49..b7cee82dcc 100644 --- a/Source/cmBuildCommand.cxx +++ b/Source/cmBuildCommand.cxx @@ -77,7 +77,7 @@ bool cmBuildCommand::InitialPass(std::vector<std::string> const& args) else { makecommand = makeprogram; - makecommand += " -k"; + makecommand += " -i"; } m_Makefile->AddCacheDefinition(define, makecommand.c_str(), |