Browse Source

BUG: INSTALL_DATA should be INSTALL_PROGRAMS for program install targets.

Brad King 23 years ago
parent
commit
5376acd6a9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmLocalUnixMakefileGenerator.cxx

+ 1 - 1
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";