diff options
author | Brad King <brad.king@kitware.com> | 2002-09-17 18:40:22 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-09-17 18:40:22 (GMT) |
commit | 67e13e97986fb4483c37d39a3d0dbce880090083 (patch) | |
tree | 37ad31b5924f0cf37f4a70ad61b39d0a7bbd6f9b | |
parent | 4267a1b4c152e82d8aa1bb3b9eea9cb84057e6ca (diff) | |
download | CMake-67e13e97986fb4483c37d39a3d0dbce880090083.zip CMake-67e13e97986fb4483c37d39a3d0dbce880090083.tar.gz CMake-67e13e97986fb4483c37d39a3d0dbce880090083.tar.bz2 |
ERR: Fixed typo: INSTALL_PROGRAMS -> INSTALL_PROGRAM.
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx index 40daab0..1013821 100644 --- a/Source/cmLocalUnixMakefileGenerator.cxx +++ b/Source/cmLocalUnixMakefileGenerator.cxx @@ -1681,7 +1681,7 @@ void cmLocalUnixMakefileGenerator::OutputInstallRules(std::ostream& fout) { f = f.substr(binaryPath.length()); } - fout << "\t@ echo \"Installing " << f.c_str() << " \"\n"; + fout << "\t@echo \"Installing " << f.c_str() << " \"\n"; // avoid using install-sh to install install-sh // does not work on windows.... if(*i == "install-sh") @@ -1716,7 +1716,7 @@ void cmLocalUnixMakefileGenerator::OutputInstallRules(std::ostream& fout) { f = f.substr(binaryPath.length()); } - fout << "\t@ echo \"Installing " << f.c_str() << " \"\n"; + fout << "\t@echo \"Installing " << f.c_str() << " \"\n"; // avoid using install-sh to install install-sh // does not work on windows.... if(*i == "install-sh") @@ -1725,7 +1725,7 @@ void cmLocalUnixMakefileGenerator::OutputInstallRules(std::ostream& fout) } else { - fout << "\t @$(INSTALL_PROGRAMS) "; + fout << "\t @$(INSTALL_PROGRAM) "; } fout << *i << " $(DESTDIR)" << prefix << l->second.GetInstallPath() << "\n"; |