mirror of
https://github.com/fspc/gbootroot.git
synced 2025-04-04 07:43:22 -04:00
* This should work nicer.
This commit is contained in:
parent
3e29af76bf
commit
7e3c803b2a
@ -52,14 +52,14 @@ sub ars { $ars = $_[0];
|
|||||||
$filename = $ars->{filename};
|
$filename = $ars->{filename};
|
||||||
$filesystem_size = $ars->{filesystem_size};
|
$filesystem_size = $ars->{filesystem_size};
|
||||||
$kernel = $ars->{kernel};
|
$kernel = $ars->{kernel};
|
||||||
$template_dir = $ars->{template_directory};
|
$template_dir = $ars->{template_dir};
|
||||||
$template = $ars->{template};
|
$template = $ars->{template};
|
||||||
$tmp = $ars->{tmp};
|
$tmp = $ars->{tmp};
|
||||||
$mnt = $ars->{mnt};
|
$mnt = $ars->{mnt};
|
||||||
|
|
||||||
# Freshmeat comes here so the rest of the program needs
|
# Freshmeat comes here so the rest of the program needs
|
||||||
# to be warned when the template is coming from here.
|
# to be warned when the template is coming from here.
|
||||||
$changed_text = "$template_dir$template";
|
$changed_text = "$template_dir$template" if $template;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -497,7 +497,7 @@ sub continue {
|
|||||||
|
|
||||||
sub check {
|
sub check {
|
||||||
|
|
||||||
$error = read_contents_file($changed_text);
|
$error = read_contents_file("$template_dir$template");
|
||||||
return if $error && $error eq "ERROR";
|
return if $error && $error eq "ERROR";
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -510,7 +510,7 @@ sub links_deps {
|
|||||||
$error = hard_links();
|
$error = hard_links();
|
||||||
return if $error && $error eq "ERROR";
|
return if $error && $error eq "ERROR";
|
||||||
|
|
||||||
$error = library_dependencies($changed_text);
|
$error = library_dependencies("$template_dir$template");
|
||||||
return if $error && $error eq "ERROR";
|
return if $error && $error eq "ERROR";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user