diff options
author | David Cole <david.cole@kitware.com> | 2007-10-15 11:08:15 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2007-10-15 11:08:15 (GMT) |
commit | c8e832dcf5d1477192e19bf521f684c953d7751d (patch) | |
tree | d7a828f9c03d484a1689483454674d7f635e13ca /Source/cmLocalGenerator.cxx | |
parent | fa513be6579b1b5074418aa1fe099e91eb0c8c55 (diff) | |
download | CMake-c8e832dcf5d1477192e19bf521f684c953d7751d.zip CMake-c8e832dcf5d1477192e19bf521f684c953d7751d.tar.gz CMake-c8e832dcf5d1477192e19bf521f684c953d7751d.tar.bz2 |
BUG: Fix #5868 - add COMPONENT handling to the SCRIPT and CODE signatures of the INSTALL command.
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 3c20cf8..acaaad5 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -2419,7 +2419,7 @@ cmLocalGenerator // Include the user-specified pre-install script for this target. if(const char* preinstall = l->second.GetProperty("PRE_INSTALL_SCRIPT")) { - cmInstallScriptGenerator g(preinstall); + cmInstallScriptGenerator g(preinstall, false, 0); g.Generate(os, config, configurationTypes); } @@ -2472,7 +2472,7 @@ cmLocalGenerator // Include the user-specified post-install script for this target. if(const char* postinstall = l->second.GetProperty("POST_INSTALL_SCRIPT")) { - cmInstallScriptGenerator g(postinstall); + cmInstallScriptGenerator g(postinstall, false, 0); g.Generate(os, config, configurationTypes); } } |