diff options
Diffstat (limited to 'packages/altboot/files/init.altboot')
-rw-r--r-- | packages/altboot/files/init.altboot | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/altboot/files/init.altboot b/packages/altboot/files/init.altboot index b872af2d20..033fb2124f 100644 --- a/packages/altboot/files/init.altboot +++ b/packages/altboot/files/init.altboot @@ -95,7 +95,9 @@ show_menu() { do if ! test -d "$1/$file" then - M_TITLE="`$1/$file title`" + # NOTE: It is important to use "." here so that the script inherits + # the shell environment / all set variables! + M_TITLE="`. $1/$file title`" FLAGS="`$1/$file flags`" if ! test -z "$M_TITLE" |