BUG: INSTALL_DATA should be INSTALL_PROGRAMS for program install targets.

This commit is contained in:
Brad King 2002-09-17 14:09:39 -04:00
parent 6844dfd7ca
commit 5376acd6a9
1 changed files with 1 additions and 1 deletions

View File

@ -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";