Browse Source

*** empty log message ***

David Rose 25 years ago
parent
commit
5022b9e9b6

+ 4 - 0
pandatool/src/bam/eggToBam.cxx

@@ -25,6 +25,10 @@ EggToBam() :
     ("This program reads Egg files and outputs Bam files, the binary format "
      "suitable for direct loading of animation and models into Panda.");
 
+  // -f is always in effect for egg2bam.  It doesn't make sense to
+  // provide it as an option to the user.
+  remove_option("f");
+
   add_option
     ("tp", "path", 0, 
      "Add the indicated colon-delimited paths to the texture-path.  This "

+ 1 - 1
pandatool/src/cvscopy/cvsCopy.cxx

@@ -333,7 +333,7 @@ cvs_add(const Filename &filename) {
     return false;
   }
 
-  string command = _cvs_binary + " add " + filename.get_basename();
+  string command = _cvs_binary + " add -kb " + filename.get_basename();
   nout << command << "\n";
   int result = system(command.c_str());
 

+ 1 - 1
pandatool/src/softprogs/softCVS.cxx

@@ -480,7 +480,7 @@ scan_scene_file(istream &in) {
 ////////////////////////////////////////////////////////////////////
 bool SoftCVS::
 cvs_add(const string &path) {
-  string command = _cvs_binary + " add " + path;
+  string command = _cvs_binary + " add -kb " + path;
   nout << command << "\n";
   int result = system(command.c_str());