summaryrefslogtreecommitdiff
path: root/Source/cmGetPropertyCommand.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmGetPropertyCommand.cxx')
-rw-r--r--Source/cmGetPropertyCommand.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmGetPropertyCommand.cxx b/Source/cmGetPropertyCommand.cxx
index 7622cf231a..830be0cf79 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
{