mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-25 06:14:40 +00:00
18f05c765c
Ubuntu 16.04 "xenial xerus" does not come with Python 2.x by default. It is possible to install a python-2.7 package, but this has its own problem: no `python` or `python2` symlink (see #7717). This fixes the following scripts to work with python 3: - `make check` (bctest,py, bitcoin-util-test.py) - `make translate` (extract_strings_qt.py) - `make symbols-check` (symbol-check.py) - `make security-check` (security-check.py) Explicitly call the python commands using $(PYTHON) instead of relying on the interpreter line at the top of the scripts.
14 lines
410 B
Python
Executable File
14 lines
410 B
Python
Executable File
#!/usr/bin/python
|
|
# Copyright 2014 BitPay, Inc.
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
from __future__ import division,print_function,unicode_literals
|
|
import os
|
|
import bctest
|
|
import buildenv
|
|
|
|
if __name__ == '__main__':
|
|
bctest.bctester(os.environ["srcdir"] + "/test/data",
|
|
"bitcoin-util-test.json",buildenv)
|
|
|