forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rel-builds: Directly deploy win installer to OUTDIR
- Loading branch information
Showing
2 changed files
with
2 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -220,7 +220,7 @@ export PATH="${BASEPREFIX}/${HOST}/native/bin:${PATH}" | |
# Make the os-specific installers | ||
case "$HOST" in | ||
*mingw*) | ||
make deploy ${V:+V=1} | ||
make deploy ${V:+V=1} BITCOIN_WIN_INSTALLER="${OUTDIR}/${DISTNAME}-win64-setup-unsigned.exe" | ||
;; | ||
esac | ||
|
||
|
@@ -232,19 +232,6 @@ export PATH="${BASEPREFIX}/${HOST}/native/bin:${PATH}" | |
# Install built Bitcoin Core to $INSTALLPATH | ||
make install DESTDIR="${INSTALLPATH}" ${V:+V=1} | ||
|
||
case "$HOST" in | ||
*mingw*) | ||
# This step not only moves the unsigned NSIS executable to | ||
# "${OUTDIR}", but also renames it | ||
# | ||
# from: | ||
# bitcoin-@[email protected] | ||
# to: | ||
# ${DISTNAME}-win64-setup-unsigned.exe | ||
# | ||
cp -f ./bitcoin-*-win64-setup-unsigned.exe "${OUTDIR}/${DISTNAME}-win64-setup-unsigned.exe" | ||
;; | ||
esac | ||
( | ||
cd installed | ||
|
||
|