diff options
author | Brad King <brad.king@kitware.com> | 2002-09-17 18:09:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-09-17 18:09:39 (GMT) |
commit | 5376acd6a95a99c1970382663df6940ecd34fc56 (patch) | |
tree | 613ea5a05c8fec152e52d9311a56bbf4c9985ed7 | |
parent | 6844dfd7ca514e211d111e0a016c67e0a15dfe72 (diff) | |
download | CMake-5376acd6a95a99c1970382663df6940ecd34fc56.zip CMake-5376acd6a95a99c1970382663df6940ecd34fc56.tar.gz CMake-5376acd6a95a99c1970382663df6940ecd34fc56.tar.bz2 |
BUG: INSTALL_DATA should be INSTALL_PROGRAMS for program install targets.
-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 09ccc2f..40daab0 100644 --- a/Source/cmLocalUnixMakefileGenerator.cxx +++ b/Source/cmLocalUnixMakefileGenerator.cxx @@ -1725,7 +1725,7 @@ void cmLocalUnixMakefileGenerator::OutputInstallRules(std::ostream& fout) } else { - fout << "\t @$(INSTALL_DATA) "; + fout << "\t @$(INSTALL_PROGRAMS) "; } fout << *i << " $(DESTDIR)" << prefix << l->second.GetInstallPath() << "\n"; |