diff options
author | Brad King <brad.king@kitware.com> | 2006-10-04 18:37:42 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-10-04 18:37:42 (GMT) |
commit | 523075ded543cbb7044bc4b56203d329aff0cb42 (patch) | |
tree | b437035f021967f257018e4199291c5f0983aabf /Source/cmMakefile.h | |
parent | 430f6f35ebfd237e6f33afee21308bfc28a7a553 (diff) | |
download | CMake-523075ded543cbb7044bc4b56203d329aff0cb42.zip CMake-523075ded543cbb7044bc4b56203d329aff0cb42.tar.gz CMake-523075ded543cbb7044bc4b56203d329aff0cb42.tar.bz2 |
BUG: Do not replace @VAR@ syntax in list files. This addresses bug #2722.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 5f3ff61..094fee9 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -570,7 +570,8 @@ public: bool atOnly = false, const char* filename = 0, long line = -1, - bool removeEmpty = false) const; + bool removeEmpty = false, + bool replaceAt = true) const; /** * Remove any remaining variables in the string. Anything with ${var} or |