diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-05-16 22:08:14 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-05-16 22:08:14 (GMT) |
commit | d4498a9e52ccb2a21641e4519cea6bce1ab5dc75 (patch) | |
tree | 4fcf4cfb66f6373f3d9d5604e6b8f1fd9c62f0f6 /Source/cmCacheManager.cxx | |
parent | 9f8d296f159907bee285e708cbcb9b2403c01f5f (diff) | |
download | CMake-d4498a9e52ccb2a21641e4519cea6bce1ab5dc75.zip CMake-d4498a9e52ccb2a21641e4519cea6bce1ab5dc75.tar.gz CMake-d4498a9e52ccb2a21641e4519cea6bce1ab5dc75.tar.bz2 |
BUG: fix for sun compiler
Diffstat (limited to 'Source/cmCacheManager.cxx')
-rw-r--r-- | Source/cmCacheManager.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx index 3788b00..d183e23 100644 --- a/Source/cmCacheManager.cxx +++ b/Source/cmCacheManager.cxx @@ -111,7 +111,7 @@ bool cmCacheManager::LoadCache(const char* path, const int bsize = 4096; char buffer[bsize]; // input line is: key:type=value - cmRegularExpression reg("(.*):(.*)=(.*)"); + cmRegularExpression reg("^([^:]*):([^=]*)=(.*)$"); while(fin) { // Format is key:type=value |