diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2001-05-22 16:39:22 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2001-05-22 16:39:22 (GMT) |
commit | 69503c66eb8225b57b5e8968f2d58d646bcf3191 (patch) | |
tree | e5c1ee8234ed801e6d25710b89e439a2a79c6245 /Source/cmDSPMakefile.cxx | |
parent | 211a55687691908d23ce279960da8dc0add7cea4 (diff) | |
download | CMake-69503c66eb8225b57b5e8968f2d58d646bcf3191.zip CMake-69503c66eb8225b57b5e8968f2d58d646bcf3191.tar.gz CMake-69503c66eb8225b57b5e8968f2d58d646bcf3191.tar.bz2 |
fixed some of the LIBRARY_OUTPUT_PATH and EXECUTABLE_OUTPUT_PATH problems.
Diffstat (limited to 'Source/cmDSPMakefile.cxx')
-rw-r--r-- | Source/cmDSPMakefile.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmDSPMakefile.cxx b/Source/cmDSPMakefile.cxx index fe3fc98..9913a14 100644 --- a/Source/cmDSPMakefile.cxx +++ b/Source/cmDSPMakefile.cxx @@ -550,9 +550,9 @@ void cmDSPMakefile::WriteDSPHeader(std::ostream& fout, const char *libName, cmSystemTools::ReplaceString(line, "BUILD_INCLUDES", m_IncludeOptions.c_str()); cmSystemTools::ReplaceString(line, "OUTPUT_LIBNAME",libName); - cmSystemTools::ReplaceString(line, "OUTPUT_LIBRARY_PATH", - exePath.c_str()); - cmSystemTools::ReplaceString(line, "OUTPUT_EXECUTABLE_PATH", + cmSystemTools::ReplaceString(line, "LIBRARY_OUTPUT_PATH", + libPath.c_str()); + cmSystemTools::ReplaceString(line, "EXECUTABLE_OUTPUT_PATH", exePath.c_str()); cmSystemTools::ReplaceString(line, "EXTRA_DEFINES", |