diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-08-06 14:15:48 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-08-06 14:15:48 (GMT) |
commit | ea6a84cc646e9ac01ead3ebb0f0b829b587262f0 (patch) | |
tree | 0bc9501c5dbb1c274bb8bde5b69fe51527c2acab | |
parent | 07865fd113cccc5859250af1b57bac7b20bf3cf5 (diff) | |
download | CMake-ea6a84cc646e9ac01ead3ebb0f0b829b587262f0.zip CMake-ea6a84cc646e9ac01ead3ebb0f0b829b587262f0.tar.gz CMake-ea6a84cc646e9ac01ead3ebb0f0b829b587262f0.tar.bz2 |
ENH: Fix install problem
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx index a171687..0212fcc 100644 --- a/Source/cmLocalUnixMakefileGenerator.cxx +++ b/Source/cmLocalUnixMakefileGenerator.cxx @@ -2225,7 +2225,7 @@ void cmLocalUnixMakefileGenerator::OutputInstallRules(std::ostream& fout) // first make the directories for each target fout << "\t@if [ ! -d \"$(DESTDIR)" << prefix << l->second.GetInstallPath() << "\" ] ; then \\\n"; - fout << "\t @echo \"Making directory \\\"$(DESTDIR)" << prefix + fout << "\t echo \"Making directory \\\"$(DESTDIR)" << prefix << l->second.GetInstallPath() << "\\\" \"; \\\n"; fout << "\t mkdir -p \"$(DESTDIR)" << prefix << l->second.GetInstallPath() << "\"; \\\n"; |