diff options
Diffstat (limited to 'Source/cmGetPropertyCommand.cxx')
-rw-r--r-- | Source/cmGetPropertyCommand.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmGetPropertyCommand.cxx b/Source/cmGetPropertyCommand.cxx index 7622cf2..830be0c 100644 --- a/Source/cmGetPropertyCommand.cxx +++ b/Source/cmGetPropertyCommand.cxx @@ -287,7 +287,8 @@ bool cmGetPropertyCommand::HandleSourceMode() if(cmSourceFile* sf = this->Makefile->GetOrCreateSource(this->Name.c_str())) { - return this->StoreResult(sf->GetProperty(this->PropertyName.c_str())); + return + this->StoreResult(sf->GetPropertyForUser(this->PropertyName.c_str())); } else { |