diff options
author | Brad King <brad.king@kitware.com> | 2003-01-20 23:55:00 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-01-20 23:55:00 (GMT) |
commit | 9cbb4fd308a82c5338d9452cf8e4c226ee447c99 (patch) | |
tree | 0ab53f962d455e497aab7ed9af484604b38bb565 | |
parent | 594bc7f22bfb314af9dc16bf1700179077aec5d0 (diff) | |
download | CMake-9cbb4fd308a82c5338d9452cf8e4c226ee447c99.zip CMake-9cbb4fd308a82c5338d9452cf8e4c226ee447c99.tar.gz CMake-9cbb4fd308a82c5338d9452cf8e4c226ee447c99.tar.bz2 |
BUG: Fixed typo in previous fix.
-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 5e9f8e6..6acd51e 100644 --- a/Source/cmLocalUnixMakefileGenerator.cxx +++ b/Source/cmLocalUnixMakefileGenerator.cxx @@ -2061,7 +2061,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"; + "\" ] ; then \\\n"; fout << "\t echo \"Making directory \\\"$(DESTDIR)" << prefix << l->second.GetInstallPath() << "\\\" \"; \\\n"; fout << "\t mkdir -p \"$(DESTDIR)" << prefix << l->second.GetInstallPath() |