Overwrite registry only if the source files change

svn path=/branches/xmlbuildsystem/; revision=15312
This commit is contained in:
Casper Hornstrup
2005-05-15 14:18:45 +00:00
parent 7a812470b6
commit 64b6731731
+4 -2
View File
@@ -913,10 +913,12 @@ MingwBackend::GenerateInstallTarget ()
vector<string> vInstallTargetFiles;
GetInstallTargetFiles ( vInstallTargetFiles );
string installTargetFiles = v2s ( vInstallTargetFiles, 5 );
string registryTargetFiles = GetRegistryTargetFiles ();
fprintf ( fMakefile,
"install: %s install_registry\n",
installTargetFiles.c_str () );
"install: %s %s\n",
installTargetFiles.c_str (),
registryTargetFiles.c_str () );
OutputNonModuleInstallTargets ();
OutputModuleInstallTargets ();
OutputRegistryInstallTarget ();