summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-12-29 15:52:19 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-12-29 15:52:19 (GMT)
commit14c256ddba587105d72a8d219f961cd73b38503e (patch)
tree5dbfcf40bc6a61968a2b6bad747057d607146e72 /Source/cmake.cxx
parentd1180fc4e1545f98fddd9a51bb2140f04af0730d (diff)
downloadCMake-14c256ddba587105d72a8d219f961cd73b38503e.zip
CMake-14c256ddba587105d72a8d219f961cd73b38503e.tar.gz
CMake-14c256ddba587105d72a8d219f961cd73b38503e.tar.bz2
ENH: Make additional file names optional
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index 32cad9a..0d9de9f 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -964,7 +964,7 @@ int cmake::CMakeCommand(std::vector<std::string>& args)
}
// Untar files
- else if (args[1] == "untar" && args.size() > 3)
+ else if (args[1] == "untar" && args.size() > 2)
{
std::string outFile = args[2];
std::vector<cmStdString> files;