diff options
author | Brad King <brad.king@kitware.com> | 2016-08-01 18:59:41 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-08-01 18:59:41 (GMT) |
commit | 8427b8e11c9a98fb7f7875a1153ab4998e61d4c1 (patch) | |
tree | 5b24444e6f5666c5b0f66e5c3fb949f94e644ef2 /Source | |
parent | 8b9cd61337501b6adb36fcd70e13ad59d1a63b34 (diff) | |
parent | ea6475334aff57633ad7bb80c013c8953328a909 (diff) | |
download | CMake-8427b8e11c9a98fb7f7875a1153ab4998e61d4c1.zip CMake-8427b8e11c9a98fb7f7875a1153ab4998e61d4c1.tar.gz CMake-8427b8e11c9a98fb7f7875a1153ab4998e61d4c1.tar.bz2 |
Merge topic 'aliased-target-properties'
ea647533 Do not report ALIASED_TARGET as always set (#15783)
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGetPropertyCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGetPropertyCommand.cxx b/Source/cmGetPropertyCommand.cxx index 854fdb8..2307e08 100644 --- a/Source/cmGetPropertyCommand.cxx +++ b/Source/cmGetPropertyCommand.cxx @@ -253,7 +253,7 @@ bool cmGetPropertyCommand::HandleTargetMode() if (this->Makefile->IsAlias(this->Name)) { return this->StoreResult(target->GetName().c_str()); } else { - return this->StoreResult((this->Variable + "-NOTFOUND").c_str()); + return this->StoreResult(NULL); } } return this->StoreResult( |