فهرست منبع

BUG: RENAME option should be allowd for INSTALL(PROGRAMS) too.

Brad King 19 سال پیش
والد
کامیت
ba9c97ccec
1فایلهای تغییر یافته به همراه4 افزوده شده و 2 حذف شده
  1. 4 2
      Source/cmFileCommand.cxx

+ 4 - 2
Source/cmFileCommand.cxx

@@ -855,9 +855,11 @@ bool cmFileCommand::HandleInstallCommand(
   // Check rename form.
   if(!rename.empty())
     {
-    if(itype != cmTarget::INSTALL_FILES)
+    if(itype != cmTarget::INSTALL_FILES &&
+       itype != cmTarget::INSTALL_PROGRAMS)
       {
-      this->SetError("INSTALL option RENAME may be used only with FILES.");
+      this->SetError("INSTALL option RENAME may be used only with "
+                     "FILES or PROGRAMS.");
       return false;
       }
     if(files.size() > 1)