diff options
| author | Ross Nicoll <[email protected]> | 2018-01-20 18:34:28 +0000 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2019-03-25 05:36:12 +0000 |
| commit | b154d2a4575d79dcd47b3e65f65360dedc5edee3 (patch) | |
| tree | c095084e16970180fc53dad6c465aeb7a2cf360b /contrib/devtools | |
| parent | Update debian contrib files to match Dogecoin (#1449) (diff) | |
| download | discoin-b154d2a4575d79dcd47b3e65f65360dedc5edee3.tar.xz discoin-b154d2a4575d79dcd47b3e65f65360dedc5edee3.zip | |
Rename and update man pages (#1451)
Diffstat (limited to 'contrib/devtools')
| -rwxr-xr-x | contrib/devtools/gen-manpages.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/devtools/gen-manpages.sh b/contrib/devtools/gen-manpages.sh index 967717e1e..e8838db52 100755 --- a/contrib/devtools/gen-manpages.sh +++ b/contrib/devtools/gen-manpages.sh @@ -4,10 +4,10 @@ TOPDIR=${TOPDIR:-$(git rev-parse --show-toplevel)} SRCDIR=${SRCDIR:-$TOPDIR/src} MANDIR=${MANDIR:-$TOPDIR/doc/man} -BITCOIND=${BITCOIND:-$SRCDIR/bitcoind} -BITCOINCLI=${BITCOINCLI:-$SRCDIR/bitcoin-cli} -BITCOINTX=${BITCOINTX:-$SRCDIR/bitcoin-tx} -BITCOINQT=${BITCOINQT:-$SRCDIR/qt/bitcoin-qt} +BITCOIND=${BITCOIND:-$SRCDIR/dogecoind} +BITCOINCLI=${BITCOINCLI:-$SRCDIR/dogecoin-cli} +BITCOINTX=${BITCOINTX:-$SRCDIR/dogecoin-tx} +BITCOINQT=${BITCOINQT:-$SRCDIR/qt/dogecoin-qt} [ ! -x $BITCOIND ] && echo "$BITCOIND not found or not executable." && exit 1 @@ -15,8 +15,8 @@ BITCOINQT=${BITCOINQT:-$SRCDIR/qt/bitcoin-qt} BTCVER=($($BITCOINCLI --version | head -n1 | awk -F'[ -]' '{ print $6, $7 }')) # Create a footer file with copyright content. -# This gets autodetected fine for bitcoind if --version-string is not set, -# but has different outcomes for bitcoin-qt and bitcoin-cli. +# This gets autodetected fine for dogecoind if --version-string is not set, +# but has different outcomes for dogecoin-qt and dogecoin-cli. echo "[COPYRIGHT]" > footer.h2m $BITCOIND --version | sed -n '1!p' >> footer.h2m |