summaryrefslogtreecommitdiff
path: root/Source/cmGlobalNMakeMakefileGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2003-08-01 13:13:43 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2003-08-01 13:13:43 -0400
commit63ca58ceafa459ec769d7c969852ab1f6fb30f7c (patch)
treec1ddc14f5aa14a4ec909466fa1f1db092fe40198 /Source/cmGlobalNMakeMakefileGenerator.cxx
parent46acf162f5c42e5f2d1e9f65a128a3cdc9662cd2 (diff)
downloadcmake-63ca58ceafa459ec769d7c969852ab1f6fb30f7c.tar.gz
ENH: allow lib prefix for to stay for nmake and borland make as it is not a system prefix
Diffstat (limited to 'Source/cmGlobalNMakeMakefileGenerator.cxx')
-rw-r--r--Source/cmGlobalNMakeMakefileGenerator.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalNMakeMakefileGenerator.cxx b/Source/cmGlobalNMakeMakefileGenerator.cxx
index a1db99fc3d..08b48c88bc 100644
--- a/Source/cmGlobalNMakeMakefileGenerator.cxx
+++ b/Source/cmGlobalNMakeMakefileGenerator.cxx
@@ -40,6 +40,7 @@ cmLocalGenerator *cmGlobalNMakeMakefileGenerator::CreateLocalGenerator()
lg->SetWindowsShell(true);
lg->SetMakeSilentFlag("/nologo");
lg->SetGlobalGenerator(this);
+ lg->SetIgnoreLibPrefix(true);
return lg;
}