diff --git a/ppremake/config_msvc.h b/ppremake/config_msvc.h index bc90297bd1..efc5797685 100644 --- a/ppremake/config_msvc.h +++ b/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 ****************/ diff --git a/ppremake/configure.in b/ppremake/configure.in index 985573539d..18c9d076c8 100644 --- a/ppremake/configure.in +++ b/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) diff --git a/ppremake/ppDirectory.cxx b/ppremake/ppDirectory.cxx index f929ce54e3..c3f273f78f 100644 --- a/ppremake/ppDirectory.cxx +++ b/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); }