summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-08-06 14:15:48 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-08-06 14:15:48 (GMT)
commitea6a84cc646e9ac01ead3ebb0f0b829b587262f0 (patch)
tree0bc9501c5dbb1c274bb8bde5b69fe51527c2acab
parent07865fd113cccc5859250af1b57bac7b20bf3cf5 (diff)
downloadCMake-ea6a84cc646e9ac01ead3ebb0f0b829b587262f0.zip
CMake-ea6a84cc646e9ac01ead3ebb0f0b829b587262f0.tar.gz
CMake-ea6a84cc646e9ac01ead3ebb0f0b829b587262f0.tar.bz2
ENH: Fix install problem
-rw-r--r--Source/cmLocalUnixMakefileGenerator.cxx2
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";