summaryrefslogtreecommitdiff
path: root/multistrap
diff options
context:
space:
mode:
authorJohannes Schauer <josch@debian.org>2016-12-24 02:34:19 +0100
committerJohannes Schauer <josch@debian.org>2016-12-24 02:34:19 +0100
commit2cf9dc0ca71e02a5e24ce54d112c4c4a2c96a0bc (patch)
tree5840dc3c8f3aa5ca65f7abaffad967127d056f46 /multistrap
parent0c9fdf5e10958c9e0f0fcfcd67f76972ce0f4ca7 (diff)
Add missing whitespace between arguments in system() command
Diffstat (limited to 'multistrap')
-rwxr-xr-xmultistrap4
1 files changed, 2 insertions, 2 deletions
diff --git a/multistrap b/multistrap
index 5adba7c..d7955cd 100755
--- a/multistrap
+++ b/multistrap
@@ -973,7 +973,7 @@ sub native {
closedir (SEEDS);
foreach my $s (@seeds) {
printf (_g("I: Running debconf for seed file: %s\n"), $s);
- system ("$str $env chroot" . shellescape($dir) . " debconf-set-selections /tmp/preseeds/$s");
+ system ("$str $env chroot " . shellescape($dir) . " debconf-set-selections /tmp/preseeds/$s");
}
}
&run_native_hooks_start(sort @{$hooks{'N'}}) if (defined ($hooks{'N'}));
@@ -988,7 +988,7 @@ sub native {
$t =~ s/\.preinst//;
next if ($t =~ /$f/);
next if ($script =~ /bash/);
- system ("$str $env chroot" . shellescape($dir) . " /var/lib/dpkg/info/$script install");
+ system ("$str $env chroot " . shellescape($dir) . " /var/lib/dpkg/info/$script install");
}
}
my $retval = 0;