From: Ben Gras Date: Fri, 21 Oct 2005 21:00:06 +0000 (+0000) Subject: Change the way $PATH is assigned X-Git-Url: http://zhaoyanbai.com/repos/?a=commitdiff_plain;h=f9199802f2fef74919c4006987257be1b3a19576;p=minix.git Change the way $PATH is assigned --- diff --git a/tools/chrootmake.sh b/tools/chrootmake.sh index 4afb9ba51..dbf15e1d3 100755 --- a/tools/chrootmake.sh +++ b/tools/chrootmake.sh @@ -1,5 +1,6 @@ #!/bin/sh -export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin +PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin +export PATH cd /usr/src || exit 1 make etcfiles su bin -c 'make world install' || exit 1