diff options
| author | fanquake <[email protected]> | 2020-01-03 19:24:58 +0800 |
|---|---|---|
| committer | fanquake <[email protected]> | 2020-01-03 19:24:58 +0800 |
| commit | 71af793512100ee7d508c3fb815af47925fe80ba (patch) | |
| tree | 1125b974bef8f98e5bc21c915025bc0bb5d403fc /src/httpserver.cpp | |
| parent | Merge #17787: scripts: add MACHO PIE check to security-check.py (diff) | |
| download | discoin-71af793512100ee7d508c3fb815af47925fe80ba.tar.xz discoin-71af793512100ee7d508c3fb815af47925fe80ba.zip | |
scripts: fix check-symbols & check-security argument passing
The first argument in bin_PROGRAMS (bitcoind) was being silently
dropped and never passed into the check-security.py or check-symbols.py scripts.
This has been the case since the scripts were added to the makefile in
https://github.com/bitcoin/bitcoin/commit/f3d3eaf78eb51238d799d8f20a585550d1567719.
Example of the behavior:
```python
# touch a, touch b, touch c
# python3 args.py < a b c
import sys
if __name__ == '__main__':
print(sys.argv)
# ['args.py', 'b', 'c']
# if you add some lines to "a",
# you'll see them here..
for line in sys.stdin:
print(line)
```
Diffstat (limited to 'src/httpserver.cpp')
0 files changed, 0 insertions, 0 deletions