From 126be83ab2087afb0e4065cf88e14757067da987 Mon Sep 17 00:00:00 2001 From: freesource Date: Sat, 15 Feb 2003 08:25:39 +0000 Subject: [PATCH] Oops, this text wasn't necessary, it was just a little bug related to pasting. --- README | 6 ++---- gbootroot | 4 ++-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/README b/README index efebfb2..752f174 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -$Id: README,v 1.24 2003/02/12 17:18:36 freesource Exp $ +$Id: README,v 1.25 2003/02/13 19:35:34 freesource Exp $ Program: gBootRoot pronounced "bOOtrOOt" License: GNU General Public License @@ -65,9 +65,7 @@ If you build the package as a non-root user, and you don't have permissions to write to system directories you can always run gbootroot from the immediate source directory "./gbootroot --home ." or "perl -I . ./gbootroot --home ." if there is already another -installed version on the system. You will want to put the -uml-utilities found under user-mode-linux/usr/bin and -user-mode-linux/usr/lib/uml in your $PATH. +installed version on the system. To install on the system type "make install" and follow the instructions in the "Important Configurations" section near the bottom diff --git a/gbootroot b/gbootroot index 177378f..62c8758 100755 --- a/gbootroot +++ b/gbootroot @@ -240,12 +240,12 @@ BEGIN { my $pwd = `pwd`; chomp $pwd; my $tools = grep(/$pwd\/user-mode-linux\/usr\/bin/,$ENV{'PATH'}); - if ($sbin == 0) { + if ($tools == 0) { $ENV{'PATH'} = "$pwd/user-mode-linux/usr/bin:" . $ENV{'PATH'}; } $tools = grep(/$pwd\/user-mode-linux\/usr\/lib\/uml/,$ENV{'PATH'}); - if ($sbin == 0) { + if ($tools == 0) { $ENV{'PATH'} = "$pwd/user-mode-linux/usr/lib\/uml:" . $ENV{'PATH'}; }