diff options
Diffstat (limited to 'meta/lib/oe/rootfs.py')
-rw-r--r-- | meta/lib/oe/rootfs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index cd65e62030..a0ac33ada6 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py | |||
@@ -297,7 +297,7 @@ class Rootfs(object, metaclass=ABCMeta): | |||
297 | 297 | ||
298 | def _run_ldconfig(self): | 298 | def _run_ldconfig(self): |
299 | if self.d.getVar('LDCONFIGDEPEND'): | 299 | if self.d.getVar('LDCONFIGDEPEND'): |
300 | bb.note("Executing: ldconfig -r" + self.image_rootfs + "-c new -v") | 300 | bb.note("Executing: ldconfig -r " + self.image_rootfs + " -c new -v") |
301 | self._exec_shell_cmd(['ldconfig', '-r', self.image_rootfs, '-c', | 301 | self._exec_shell_cmd(['ldconfig', '-r', self.image_rootfs, '-c', |
302 | 'new', '-v']) | 302 | 'new', '-v']) |
303 | 303 | ||