diff options
author | Brad King <brad.king@kitware.com> | 2007-08-03 19:44:25 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-08-03 19:44:25 (GMT) |
commit | d7118006deaf15c6e1b796b33cd883dd9bfa14fb (patch) | |
tree | 49c49f865d590cb017a04b2f14846c2826810909 /Source/cmMakefile.cxx | |
parent | 11604e72c425a3dba689dc42b0c34fdd2a9c8ff0 (diff) | |
download | CMake-d7118006deaf15c6e1b796b33cd883dd9bfa14fb.zip CMake-d7118006deaf15c6e1b796b33cd883dd9bfa14fb.tar.gz CMake-d7118006deaf15c6e1b796b33cd883dd9bfa14fb.tar.bz2 |
BUG: Target exclusion-from-all tests should always use the root local generator associated with the all target being tested.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 132d2ae..feda29b 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -2847,10 +2847,10 @@ void cmMakefile::DefineProperties(cmake *cm) cm->DefineProperty ("EXCLUDE_FROM_ALL", cmProperty::DIRECTORY, - "Exclude the target from the all target.", - "A property on a target that indicates if the target is excluded " + "Exclude the directory from the all target of its parent.", + "A property on a directory that indicates if its targets are excluded " "from the default build target. If it is not, then with a Makefile " - "for example typing make will couse this target to be built as well. " + "for example typing make will cause the targets to be built. " "The same concept applies to the default build of other generators.", - true); + false); } |