summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/npm.py
diff options
context:
space:
mode:
authorTzu Hsiang Lin <t9360341@ntut.org.tw>2018-05-22 01:56:44 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-07-02 11:44:05 +0100
commit6aefc8058579459fb8fd26b3bf71efdad82a6a2d (patch)
tree53d37a3a09690ac2ec01da96068f710d43668107 /bitbake/lib/bb/fetch2/npm.py
parent7a9edf12cc741bbebf6cb244ba4cf3213fe0a1fd (diff)
downloadpoky-6aefc8058579459fb8fd26b3bf71efdad82a6a2d.tar.gz
bitbake: fetch2: fix import error for Python 3.6.5
When running bitbake command with Python 3.6.5 always result in import error causing by the change of distutils module. This patch replaces the method to search executable in PATH by "/usr/bin/env <command>". (Bitbake rev: 86a4cc7248afd3e561dc70f3490f45549265470a) Signed-off-by: Tzu Hsiang Lin <t9360341@ntut.org.tw> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2/npm.py')
-rw-r--r--bitbake/lib/bb/fetch2/npm.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/npm.py b/bitbake/lib/bb/fetch2/npm.py
index 73a75fe989..8f241011fb 100644
--- a/bitbake/lib/bb/fetch2/npm.py
+++ b/bitbake/lib/bb/fetch2/npm.py
@@ -32,7 +32,6 @@ from bb.fetch2 import runfetchcmd
32from bb.fetch2 import logger 32from bb.fetch2 import logger
33from bb.fetch2 import UnpackError 33from bb.fetch2 import UnpackError
34from bb.fetch2 import ParameterError 34from bb.fetch2 import ParameterError
35from distutils import spawn
36 35
37def subprocess_setup(): 36def subprocess_setup():
38 # Python installs a SIGPIPE handler by default. This is usually not what 37 # Python installs a SIGPIPE handler by default. This is usually not what