diff options
| author | Chun Kuan Lee <[email protected]> | 2018-07-26 17:09:49 +0800 |
|---|---|---|
| committer | Chun Kuan Lee <[email protected]> | 2018-07-26 17:10:13 +0800 |
| commit | 1e60713a68296a0ff221befb48b2958fbf019ebf (patch) | |
| tree | d1fa423963e20b2742fe297c7a1a6c985654b6f6 /contrib/devtools/security-check.py | |
| parent | Merge #13706: doc: Minor improvements to release-process.md (diff) | |
| download | discoin-1e60713a68296a0ff221befb48b2958fbf019ebf.tar.xz discoin-1e60713a68296a0ff221befb48b2958fbf019ebf.zip | |
contrib: Fix test-security-check fail in Ubuntu 18.04
Diffstat (limited to 'contrib/devtools/security-check.py')
| -rwxr-xr-x | contrib/devtools/security-check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/devtools/security-check.py b/contrib/devtools/security-check.py index 47195f73c..391984a8f 100755 --- a/contrib/devtools/security-check.py +++ b/contrib/devtools/security-check.py @@ -14,7 +14,7 @@ import os READELF_CMD = os.getenv('READELF', '/usr/bin/readelf') OBJDUMP_CMD = os.getenv('OBJDUMP', '/usr/bin/objdump') -NONFATAL = {'HIGH_ENTROPY_VA'} # checks which are non-fatal for now but only generate a warning +NONFATAL = {} # checks which are non-fatal for now but only generate a warning def check_ELF_PIE(executable): ''' |