Skip to content

Commit 3e4829a

Browse files
luke-jrlaanwj
authored andcommitted
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) Github-Pull: bitcoin#14018 Rebased-From: 8563341 Tree-SHA512: 2d219a4a2027bcd7359b7320bafc6b7cd3bde3dcf9309ddd6198ff67407470025baa71e6d0ed3d6cec081834ddc9a0247043865eb26737e6fd0d2f09574f5932
1 parent 9833545 commit 3e4829a

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
@@ -81,7 +81,7 @@ Section -Main SEC0000
8181
File @abs_top_srcdir@/release/@BITCOIN_DAEMON_NAME@@EXEEXT@
8282
File @abs_top_srcdir@/release/@BITCOIN_CLI_NAME@@EXEEXT@
8383
SetOutPath $INSTDIR\doc
84-
File /r @abs_top_srcdir@/doc\*.*
84+
File /r /x Makefile* @abs_top_srcdir@/doc\*.*
8585
SetOutPath $INSTDIR
8686
WriteRegStr HKCU "${REGKEY}\Components" Main 1
8787
SectionEnd

0 commit comments

Comments
 (0)