- Code: Select all
LINE 51: ... /bin/echo "export PATH=$PATH":/opt/bin:/opt/sbin >> /etc
I believe it should read
- Code: Select all
LINE 51: ... /bin/echo "export PATH=\$PATH":/opt/bin:/opt/sbin >> /etc
(Notice... \$PATH)
The first yields export PATH=<OLD STUFF><NEW STUFF> etc
The second yields export PATH=$PATH:<NEW STUFF>
What is happening to me is that when Optware.sh gets run PATH is missing some stuff... so basically the result is that /etc/profile now has a line
export PATH = <MORE STUFF> at the top
and export PATH=<OLD STUFF><NEW STUFF> at the bottom, but <OLD STUFF> doesn't have everything <MORE STUFF> Does... not sure if that makes sense.



News