diff options
Diffstat (limited to 'scripts/lib/wic/misc.py')
| -rw-r--r-- | scripts/lib/wic/misc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/wic/misc.py b/scripts/lib/wic/misc.py index 57c042c503..3e11822996 100644 --- a/scripts/lib/wic/misc.py +++ b/scripts/lib/wic/misc.py | |||
| @@ -16,9 +16,9 @@ import logging | |||
| 16 | import os | 16 | import os |
| 17 | import re | 17 | import re |
| 18 | import subprocess | 18 | import subprocess |
| 19 | import shutil | ||
| 19 | 20 | ||
| 20 | from collections import defaultdict | 21 | from collections import defaultdict |
| 21 | from distutils import spawn | ||
| 22 | 22 | ||
| 23 | from wic import WicError | 23 | from wic import WicError |
| 24 | 24 | ||
| @@ -122,7 +122,7 @@ def find_executable(cmd, paths): | |||
| 122 | if provided and "%s-native" % recipe in provided: | 122 | if provided and "%s-native" % recipe in provided: |
| 123 | return True | 123 | return True |
| 124 | 124 | ||
| 125 | return spawn.find_executable(cmd, paths) | 125 | return shutil.which(cmd, path=paths) |
| 126 | 126 | ||
| 127 | def exec_native_cmd(cmd_and_args, native_sysroot, pseudo=""): | 127 | def exec_native_cmd(cmd_and_args, native_sysroot, pseudo=""): |
| 128 | """ | 128 | """ |
