Skip to content

Commit 8563341

Browse files
committed
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)
1 parent d19583f commit 8563341

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

share/setup.nsi.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Section -Main SEC0000
8080
File @abs_top_srcdir@/release/@BITCOIN_DAEMON_NAME@@EXEEXT@
8181
File @abs_top_srcdir@/release/@BITCOIN_CLI_NAME@@EXEEXT@
8282
SetOutPath $INSTDIR\doc
83-
File /r @abs_top_srcdir@/doc\*.*
83+
File /r /x Makefile* @abs_top_srcdir@/doc\*.*
8484
SetOutPath $INSTDIR
8585
WriteRegStr HKCU "${REGKEY}\Components" Main 1
8686
SectionEnd

0 commit comments

Comments
 (0)