summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.cxx
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2007-10-15 11:08:15 (GMT)
committerDavid Cole <david.cole@kitware.com>2007-10-15 11:08:15 (GMT)
commitc8e832dcf5d1477192e19bf521f684c953d7751d (patch)
treed7a828f9c03d484a1689483454674d7f635e13ca /Source/cmLocalGenerator.cxx
parentfa513be6579b1b5074418aa1fe099e91eb0c8c55 (diff)
downloadCMake-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.cxx4
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);
}
}