瀏覽代碼

BUG: INSTALL_DATA should be INSTALL_PROGRAMS for program install targets.

Brad King 23 年之前
父節點
當前提交
5376acd6a9
共有 1 個文件被更改,包括 1 次插入1 次删除
  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";