From 9cbb4fd308a82c5338d9452cf8e4c226ee447c99 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 20 Jan 2003 18:55:00 -0500 Subject: [PATCH] BUG: Fixed typo in previous fix. --- Source/cmLocalUnixMakefileGenerator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx index 5e9f8e66d..6acd51ec8 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()