aboutsummaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2018-08-21 06:55:24 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2018-08-21 21:23:25 +0000
commit8563341714a1ec452dd3304a39dd880face49c84 (patch)
tree05d3f471ce6b0ca44fe29e339fcce8f931fd09f8 /share
parentd19583f478f4104ea8ff787a475f9064d2c388ae (diff)
downloadbitcoin-8563341714a1ec452dd3304a39dd880face49c84.tar.xz
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')
-rw-r--r--share/setup.nsi.in2
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