Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
buffer committed Jan 16, 2020
1 parent 419c661 commit 1e72ebb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

STPYV8_VERSION = V8_GIT_TAG_STABLE

V8_DEPS_LINUX = os.environ.get('V8_DEPS_LINUX', True)
V8_DEPS_LINUX = os.environ.get('V8_DEPS_LINUX', '1') in ('1', )

os.environ['PATH'] = "{}:{}".format(os.environ['PATH'], DEPOT_HOME)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def checkout_v8():

# On Linux, install additional dependencies, per
# https://v8.dev/docs/build step 4
if sys.platform in ("linux", "linux2", ) and V8_DEPS_LINUX:
if sys.platform in ("linux", "linux2", ) and v8_deps_linux:
exec_cmd('./v8/build/install-build-deps.sh',
cwd = os.path.dirname(V8_HOME),
msg = "Installing additional linux dependencies")
Expand Down

0 comments on commit 1e72ebb

Please sign in to comment.