Browse Source

except CVS from header file check

David Rose 20 years ago
parent
commit
26b3c1fc1e
3 changed files with 4 additions and 3 deletions
  1. 1 1
      ppremake/config_msvc.h
  2. 1 1
      ppremake/configure.in
  3. 2 1
      ppremake/ppDirectory.cxx

+ 1 - 1
ppremake/config_msvc.h

@@ -86,5 +86,5 @@
  **         Also be sure to change the version number        **
  **             at the beginning of configure.in.            **
  ****************                              ****************/
-#define VERSION "1.18"
+#define VERSION "1.19"
 /****************  UPDATE VERSION NUMBER HERE  ****************/

+ 1 - 1
ppremake/configure.in

@@ -5,7 +5,7 @@ dnl ****************  UPDATE VERSION NUMBER HERE  ****************
 dnl **         Also be sure to change the version number        **
 dnl **                at the end of config_msvc.h.              **
 dnl ****************                              ****************
-AM_INIT_AUTOMAKE(ppremake, 1.18)
+AM_INIT_AUTOMAKE(ppremake, 1.19)
 dnl ****************  UPDATE VERSION NUMBER HERE  ****************
 
 AM_CONFIG_HEADER(config.h)

+ 2 - 1
ppremake/ppDirectory.cxx

@@ -504,7 +504,8 @@ scan_extra_depends(const string &cache_filename) {
   for (fi = filenames.begin(); fi != filenames.end(); ++fi) {
     string filename = (*fi);
 
-    if (!filename.empty() && filename[0] != '.' &&
+    if (!filename.empty() && filename[0] != '.' && 
+	filename != string("CVS") &&
         filename != cache_filename) {
       get_dependable_file(filename, true);
     }