summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2008-03-25 10:11:48 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2008-03-25 10:11:48 -0400
commit5905d79c8a10b172642a1b534f088b965667b007 (patch)
treed0a6cf99440088e39f257dbacf825d7fd85ef655
parenta02bbd4237c5bc37e1406f37f78e387f6f1cf9e8 (diff)
downloadcmake-5905d79c8a10b172642a1b534f088b965667b007.tar.gz
ENH: fix for watcom can't use phony
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index 2e93d8c5b3..142ccfc394 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";
}