Remove old check for duplicate subdirectories
commitb4c821a0a0000059251b75f031d57e6673b00519
authorking <king>
Thu, 17 Sep 2009 12:25:33 +0000 (17 12:25 +0000)
committerking <king>
Thu, 17 Sep 2009 12:25:33 +0000 (17 12:25 +0000)
tree39c2fde283483e38111b0642022b1004c019c7b6
parentdf04a8b3f174d6d9c66191b3a47ac50af47a41c7
Remove old check for duplicate subdirectories

In cmMakefile::AddSubDirectory we were checking for addition of the same
source directory multiple times.  However, the check code was incorrect
because it compared pointers instetad of pointed-to strings.  Since the
check was written, a better check was added right after it to enforce
unique binary directories (in which case duplicate sources are fine).
This commit simply removes the old-style check code.
Source/cmMakefile.cxx