File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -82,12 +82,12 @@ gen-manpages.py
82
82
A small script to automatically create manpages in ../../doc/man by running the release binaries with the -help option.
83
83
This requires help2man which can be found at: https://www.gnu.org/software/help2man/
84
84
85
- With in-tree builds this tool can be run from any directory within the
86
- repository. To use this tool with out-of-tree builds set ` BUILDDIR ` . For
87
- example:
85
+ This script assumes a build directory named ` build ` as suggested by example build documentation.
86
+ To use it with a different build directory, set ` BUILDDIR ` .
87
+ For example:
88
88
89
89
``` bash
90
- BUILDDIR=$PWD /build contrib/devtools/gen-manpages.py
90
+ BUILDDIR=$PWD /my- build-dir contrib/devtools/gen-manpages.py
91
91
```
92
92
93
93
headerssync-params.py
@@ -107,12 +107,12 @@ Generates a bitcoin.conf file in `share/examples/` by parsing the output from `b
107
107
release process to include a bitcoin.conf with the release binaries and can also be run by users to generate a file locally.
108
108
When generating a file as part of the release process, make sure to commit the changes after running the script.
109
109
110
- With in-tree builds this tool can be run from any directory within the
111
- repository. To use this tool with out-of-tree builds set ` BUILDDIR ` . For
112
- example:
110
+ This script assumes a build directory named ` build ` as suggested by example build documentation.
111
+ To use it with a different build directory, set ` BUILDDIR ` .
112
+ For example:
113
113
114
114
``` bash
115
- BUILDDIR=$PWD /build contrib/devtools/gen-bitcoin-conf.sh
115
+ BUILDDIR=$PWD /my- build-dir contrib/devtools/gen-bitcoin-conf.sh
116
116
```
117
117
118
118
security-check.py and test-security-check.py
Original file line number Diff line number Diff line change 5
5
6
6
export LC_ALL=C
7
7
TOPDIR=${TOPDIR:- $(git rev-parse --show-toplevel)}
8
- BUILDDIR=${BUILDDIR:- $TOPDIR }
8
+ BUILDDIR=${BUILDDIR:- $TOPDIR / build }
9
9
BINDIR=${BINDIR:- $BUILDDIR / src}
10
10
BITCOIND=${BITCOIND:- $BINDIR / bitcoind}
11
11
SHARE_EXAMPLES_DIR=${SHARE_EXAMPLES_DIR:- $TOPDIR / share/ examples}
Original file line number Diff line number Diff line change 40
40
topdir = r .stdout .rstrip ()
41
41
42
42
# Get input and output directories.
43
- builddir = os .getenv ('BUILDDIR' , topdir )
43
+ builddir = os .getenv ('BUILDDIR' , os . path . join ( topdir , 'build' ) )
44
44
mandir = os .getenv ('MANDIR' , os .path .join (topdir , 'doc/man' ))
45
45
46
46
# Verify that all the required binaries are usable, and extract copyright
You can’t perform that action at this time.
0 commit comments