aboutsummaryrefslogtreecommitdiff
path: root/contrib/devtools/symbol-check.py
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2021-07-06 11:44:37 +0800
committerfanquake <fanquake@gmail.com>2021-07-06 20:50:47 +0800
commit797b3ed9090030f32fade81803b580562d4a90a3 (patch)
tree5582e7267abdc25a1cd6a9e69ea099d7c776653b /contrib/devtools/symbol-check.py
parent15fc9a0299091bfeb3370f993ad95ff638f6ba8c (diff)
downloadbitcoin-797b3ed9090030f32fade81803b580562d4a90a3.tar.xz
script: remove gitian reference from symbol-check.py
Diffstat (limited to 'contrib/devtools/symbol-check.py')
-rwxr-xr-xcontrib/devtools/symbol-check.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/devtools/symbol-check.py b/contrib/devtools/symbol-check.py
index 56e4313d78..407c0a2d72 100755
--- a/contrib/devtools/symbol-check.py
+++ b/contrib/devtools/symbol-check.py
@@ -3,12 +3,12 @@
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
'''
-A script to check that the executables produced by gitian only contain
-certain symbols and are only linked against allowed libraries.
+A script to check that release executables only contain certain symbols
+and are only linked against allowed libraries.
Example usage:
- find ../gitian-builder/build -type f -executable | xargs python3 contrib/devtools/symbol-check.py
+ find ../path/to/binaries -type f -executable | xargs python3 contrib/devtools/symbol-check.py
'''
import subprocess
import sys