diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-03-25 14:11:48 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-03-25 14:11:48 (GMT) |
commit | 5905d79c8a10b172642a1b534f088b965667b007 (patch) | |
tree | d0a6cf99440088e39f257dbacf825d7fd85ef655 /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | a02bbd4237c5bc37e1406f37f78e387f6f1cf9e8 (diff) | |
download | CMake-5905d79c8a10b172642a1b534f088b965667b007.zip CMake-5905d79c8a10b172642a1b534f088b965667b007.tar.gz CMake-5905d79c8a10b172642a1b534f088b965667b007.tar.bz2 |
ENH: fix for watcom can't use phony
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 2e93d8c..142ccfc 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -638,7 +638,7 @@ cmLocalUnixMakefileGenerator3 replace = *i; os << "\t" << replace.c_str() << "\n"; } - if(symbolic) + if(symbolic && !this->WatcomWMake) { os << ".PHONY : " << tgt.c_str() << "\n"; } |