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

Why it is nice to test on uml, if genext2fs isn't in path and filesystem type

is changed, path can't be found .. now it makes an exception when executable
is genext2fs.
This commit is contained in:
freesource 2001-12-14 08:16:46 +00:00
parent 38b2b6dab2
commit 74c3318cbf

View File

@ -309,8 +309,11 @@ sub file_system {
# Check to see if it actually exists
my $executable = (split(/\s+/,$entry[2]))[0];
if (!find_file_in_path(basename($executable))) {
error_window("gBootRoot: ERROR: Enter a valid command");
return;
if ( $executable ne "genext2fs" ) {
error_window
("gBootRoot: ERROR: Enter a valid command");
return;
}
}
if ($executable =~ m,/,) {
if (! -e $executable) {