Add missing whitespace between arguments in system() command

main
Johannes Schauer 7 years ago
parent b62636ab82
commit 61da7819f8

6
debian/changelog vendored

@ -1,3 +1,9 @@
multistrap (2.2.8) UNRELEASED; urgency=medium
* Add missing whitespace between arguments in system() command
-- Johannes Schauer <josch@debian.org> Sat, 24 Dec 2016 02:33:48 +0100
multistrap (2.2.7) unstable; urgency=medium
* Since bash completion was moved away from /etc, invoke rm_conffile in

@ -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;

Loading…
Cancel
Save