summaryrefslogtreecommitdiffstats
path: root/Source/cmakemain.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-06-12 15:55:24 (GMT)
committerKen Martin <ken.martin@kitware.com>2001-06-12 15:55:24 (GMT)
commit8f745e7fbee6ab8230e66e8e0c3df957374e1325 (patch)
tree29a0aa6f5af3fa90513f28d4c007c85eaede83fc /Source/cmakemain.cxx
parentcdf786f9f88be96c6011302fdd4542593fa864a6 (diff)
downloadCMake-8f745e7fbee6ab8230e66e8e0c3df957374e1325.zip
CMake-8f745e7fbee6ab8230e66e8e0c3df957374e1325.tar.gz
CMake-8f745e7fbee6ab8230e66e8e0c3df957374e1325.tar.bz2
cmake does not require two arguments
Diffstat (limited to 'Source/cmakemain.cxx')
-rw-r--r--Source/cmakemain.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx
index 8207e63..5ecf1e5 100644
--- a/Source/cmakemain.cxx
+++ b/Source/cmakemain.cxx
@@ -3,7 +3,7 @@
int main(int ac, char** av)
{
cmake cm;
- if(ac < 2)
+ if(ac < 1)
{
cm.Usage(av[0]);
return -1;