*** empty log message ***

This commit is contained in:
David Rose 2001-02-22 00:10:15 +00:00
parent e18c718a52
commit 5022b9e9b6
3 changed files with 6 additions and 2 deletions

View File

@ -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 "

View File

@ -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());

View File

@ -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());