except CVS from header file check

This commit is contained in:
David Rose 2005-07-28 20:23:13 +00:00
parent c8dbf0251f
commit 26b3c1fc1e
3 changed files with 4 additions and 3 deletions

View File

@ -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 ****************/

View File

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

View File

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