Mercurial > hg
changeset 44222:a8786727e478 stable
packaging: bundle the default mercurial.ini template with Inno also
This is a step towards converging on the same installer content on Windows.
Differential Revision: https://phab.mercurial-scm.org/D8061
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sat, 01 Feb 2020 00:48:08 -0500 |
parents | f37971c31067 |
children | 481caa4a2244 |
files | contrib/packaging/hgpackaging/inno.py |
diffstat | 1 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/contrib/packaging/hgpackaging/inno.py Sat Feb 01 00:41:37 2020 -0500 +++ b/contrib/packaging/hgpackaging/inno.py Sat Feb 01 00:48:08 2020 -0500 @@ -21,6 +21,7 @@ from .util import ( find_vc_runtime_files, normalize_windows_version, + process_install_rules, read_version_py, ) @@ -31,6 +32,10 @@ 'win32ctypes', } +EXTRA_INSTALL_RULES = [ + ('contrib/win32/mercurial.ini', 'defaultrc/mercurial.rc'), +] + PACKAGE_FILES_METADATA = { 'ReadMe.html': 'Flags: isreadme', } @@ -84,6 +89,9 @@ # Now assemble all the packaged files into the staging directory. stage_install(source_dir, staging_dir) + # We also install some extra files. + process_install_rules(EXTRA_INSTALL_RULES, source_dir, staging_dir) + # hg.exe depends on VC9 runtime DLLs. Copy those into place. for f in find_vc_runtime_files(vc_x64): if f.name.endswith('.manifest'):