diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-08-02 15:06:16 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-08-02 15:06:16 (GMT) |
commit | 3b0632ae75c18be4ef2457b5016d794a65e9e48d (patch) | |
tree | 91435f62a5d1317294d15caaa3e63347278edc51 /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | 8d62804b3aac75f4d79a839ad6ded9a020f8a65e (diff) | |
download | CMake-3b0632ae75c18be4ef2457b5016d794a65e9e48d.zip CMake-3b0632ae75c18be4ef2457b5016d794a65e9e48d.tar.gz CMake-3b0632ae75c18be4ef2457b5016d794a65e9e48d.tar.bz2 |
FIX: fix bad depend info and COMPILE_FLAGS problem and remove extra cerr calls
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index e952d3b..e96ed9b 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -521,7 +521,7 @@ cmLocalUnixMakefileGenerator3 (target.GetType() == cmTarget::MODULE_LIBRARY)); if(shared) { - flags += "-D"; + flags += " -D"; if(const char* custom_export_name = target.GetProperty("DEFINE_SYMBOL")) { flags += custom_export_name; @@ -543,8 +543,6 @@ cmLocalUnixMakefileGenerator3 // Add include directory flags. this->AppendFlags(flags, this->GetIncludeFlags(lang)); - std::cerr << "Have total flags: " << flags << std::endl; - // Get the output paths for source and object files. std::string sourceFile = source.GetFullPath(); if(m_UseRelativePaths) |