From 873e81f89b3197580aca3dd4a591d00e41696a89 Mon Sep 17 00:00:00 2001 From: Matthew King Date: Sun, 26 Jun 2016 16:47:03 +0300 Subject: Use portable #! in python scripts (/usr/bin/env) --- contrib/devtools/security-check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib/devtools/security-check.py') diff --git a/contrib/devtools/security-check.py b/contrib/devtools/security-check.py index 301fea85c1..24e44cf5d8 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. -- cgit v1.2.3 From 7b01ce254cfa0e8ae7e57a72c57e8ae89f3c1829 Mon Sep 17 00:00:00 2001 From: Matthew King Date: Tue, 28 Jun 2016 12:54:30 +0300 Subject: Favour python over python2 as per PR #7723 --- contrib/devtools/security-check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib/devtools/security-check.py') diff --git a/contrib/devtools/security-check.py b/contrib/devtools/security-check.py index 24e44cf5d8..c61d652641 100755 --- a/contrib/devtools/security-check.py +++ b/contrib/devtools/security-check.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2 +#!/usr/bin/env python ''' Perform basic ELF security checks on a series of executables. Exit status will be 0 if successful, and the program will be silent. -- cgit v1.2.3