diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2018-08-21 06:55:24 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2018-08-21 21:23:25 +0000 |
commit | 8563341714a1ec452dd3304a39dd880face49c84 (patch) | |
tree | 05d3f471ce6b0ca44fe29e339fcce8f931fd09f8 /share/setup.nsi.in | |
parent | d19583f478f4104ea8ff787a475f9064d2c388ae (diff) |
Bugfix: NSIS: Exclude Makefile* from docs
Otherwise, the generated Makefile is included in the NSIS-installed documentation, which can lead to non-determinism (eg, if gawk is installed on some build VMs, but others only have mawk)
Diffstat (limited to 'share/setup.nsi.in')
-rw-r--r-- | share/setup.nsi.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/setup.nsi.in b/share/setup.nsi.in index dd42085a27..8cfb6d76bb 100644 --- a/share/setup.nsi.in +++ b/share/setup.nsi.in @@ -80,7 +80,7 @@ Section -Main SEC0000 File @abs_top_srcdir@/release/@BITCOIN_DAEMON_NAME@@EXEEXT@ File @abs_top_srcdir@/release/@BITCOIN_CLI_NAME@@EXEEXT@ SetOutPath $INSTDIR\doc - File /r @abs_top_srcdir@/doc\*.* + File /r /x Makefile* @abs_top_srcdir@/doc\*.* SetOutPath $INSTDIR WriteRegStr HKCU "${REGKEY}\Components" Main 1 SectionEnd |