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

Had to remove escapes for info/* check.

This commit is contained in:
freesource 2001-08-21 18:04:22 +00:00
parent 13359e24ef
commit a1d94aba40

View File

@ -134,7 +134,9 @@ $/ = "\n";
my @info;
foreach my $rp (@required_packages) {
$rp = (split(/_/,$rp))[0];
# Get rid of the escape from the previous invocation.
$rp =~ s/\\//g if $rp =~ /\\+/g;
# Figure out info/* .. this covers it for now.
if (-f "$info/$rp.preinst") {
push(@info,"$info/$rp.preinst\n");