Browse Source

cmake does not require two arguments

Ken Martin 24 years ago
parent
commit
8f745e7fbe
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmakemain.cxx

+ 1 - 1
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;