1
0
mirror of https://github.com/fspc/gbootroot.git synced 2025-02-22 16:43:23 -05:00

Making it happy when swim with all its STDOUT runs with debconf.

This commit is contained in:
freesource 2001-09-28 05:25:57 +00:00
parent 1427c7cf0d
commit 268ba67365

View File

@ -36,10 +36,10 @@ my $zoneinfo = get("make-debian-x11/make_debian_x11-zoneinfo");
if ($swim) {
if ($swim eq "true") {
$swim = "yes";
$swim = "yes\n";
}
else {
$swim = "no";
$swim = "no\n";
}
}
@ -51,12 +51,14 @@ my $zoneinfo = get("make-debian-x11/make_debian_x11-zoneinfo");
close(SCRIPT);
}
else {
open (SCRIPT, "|make_debian-X11")
print STDERR "Be patient, this will take a little while.\n";
open (SCRIPT, "|make_debian-X11 2&> /dev/null")
or warn "Couldn't open make_debian-X11\n";
print SCRIPT $swim;
print SCRIPT $doc;
print SCRIPT $zoneinfo;
close(SCRIPT);
set("make-debian-x11/make_debian_x11-swim","");
}
}