diff options
| author | Matthew King <[email protected]> | 2016-06-26 16:47:03 +0300 |
|---|---|---|
| committer | Matthew King <[email protected]> | 2016-06-26 16:47:03 +0300 |
| commit | 873e81f89b3197580aca3dd4a591d00e41696a89 (patch) | |
| tree | 0fcffb8b510b0eda8f649bcfa3f199dd7045fb52 /contrib/devtools | |
| parent | Merge #8244: remove unnecessary LOCK(cs_main) in getrawpmempool (diff) | |
| download | discoin-873e81f89b3197580aca3dd4a591d00e41696a89.tar.xz discoin-873e81f89b3197580aca3dd4a591d00e41696a89.zip | |
Use portable #! in python scripts (/usr/bin/env)
Diffstat (limited to 'contrib/devtools')
| -rwxr-xr-x | contrib/devtools/security-check.py | 2 | ||||
| -rwxr-xr-x | contrib/devtools/symbol-check.py | 2 | ||||
| -rwxr-xr-x | contrib/devtools/test-security-check.py | 2 | ||||
| -rwxr-xr-x | contrib/devtools/update-translations.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/contrib/devtools/security-check.py b/contrib/devtools/security-check.py index 301fea85c..24e44cf5d 100755 --- a/contrib/devtools/security-check.py +++ b/contrib/devtools/security-check.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2 +#!/usr/bin/env python2 ''' Perform basic ELF security checks on a series of executables. Exit status will be 0 if successful, and the program will be silent. diff --git a/contrib/devtools/symbol-check.py b/contrib/devtools/symbol-check.py index e26c0fbb9..8c064a182 100755 --- a/contrib/devtools/symbol-check.py +++ b/contrib/devtools/symbol-check.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2 +#!/usr/bin/env python2 # Copyright (c) 2014 Wladimir J. van der Laan # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/contrib/devtools/test-security-check.py b/contrib/devtools/test-security-check.py index fed7626aa..324b7bcd8 100755 --- a/contrib/devtools/test-security-check.py +++ b/contrib/devtools/test-security-check.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2 +#!/usr/bin/env python2 ''' Test script for security-check.py ''' diff --git a/contrib/devtools/update-translations.py b/contrib/devtools/update-translations.py index 2b6e807b4..78b9f9d17 100755 --- a/contrib/devtools/update-translations.py +++ b/contrib/devtools/update-translations.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Copyright (c) 2014 Wladimir J. van der Laan # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. |