diff options
Diffstat (limited to 'scripts/lib/wic/engine.py')
| -rw-r--r-- | scripts/lib/wic/engine.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/lib/wic/engine.py b/scripts/lib/wic/engine.py index 018815b966..674ccfc244 100644 --- a/scripts/lib/wic/engine.py +++ b/scripts/lib/wic/engine.py | |||
| @@ -19,10 +19,10 @@ import os | |||
| 19 | import tempfile | 19 | import tempfile |
| 20 | import json | 20 | import json |
| 21 | import subprocess | 21 | import subprocess |
| 22 | import shutil | ||
| 22 | import re | 23 | import re |
| 23 | 24 | ||
| 24 | from collections import namedtuple, OrderedDict | 25 | from collections import namedtuple, OrderedDict |
| 25 | from distutils.spawn import find_executable | ||
| 26 | 26 | ||
| 27 | from wic import WicError | 27 | from wic import WicError |
| 28 | from wic.filemap import sparse_copy | 28 | from wic.filemap import sparse_copy |
| @@ -245,7 +245,7 @@ class Disk: | |||
| 245 | for path in pathlist.split(':'): | 245 | for path in pathlist.split(':'): |
| 246 | self.paths = "%s%s:%s" % (native_sysroot, path, self.paths) | 246 | self.paths = "%s%s:%s" % (native_sysroot, path, self.paths) |
| 247 | 247 | ||
| 248 | self.parted = find_executable("parted", self.paths) | 248 | self.parted = shutil.which("parted", path=self.paths) |
| 249 | if not self.parted: | 249 | if not self.parted: |
| 250 | raise WicError("Can't find executable parted") | 250 | raise WicError("Can't find executable parted") |
| 251 | 251 | ||
| @@ -283,7 +283,7 @@ class Disk: | |||
| 283 | "resize2fs", "mkswap", "mkdosfs", "debugfs","blkid"): | 283 | "resize2fs", "mkswap", "mkdosfs", "debugfs","blkid"): |
| 284 | aname = "_%s" % name | 284 | aname = "_%s" % name |
| 285 | if aname not in self.__dict__: | 285 | if aname not in self.__dict__: |
| 286 | setattr(self, aname, find_executable(name, self.paths)) | 286 | setattr(self, aname, shutil.which(name, path=self.paths)) |
| 287 | if aname not in self.__dict__ or self.__dict__[aname] is None: | 287 | if aname not in self.__dict__ or self.__dict__[aname] is None: |
| 288 | raise WicError("Can't find executable '{}'".format(name)) | 288 | raise WicError("Can't find executable '{}'".format(name)) |
| 289 | return self.__dict__[aname] | 289 | return self.__dict__[aname] |
