9 lines
195 B
Bash
9 lines
195 B
Bash
|
# setup maui path
|
||
|
if [ ! `echo $PATH | /bin/grep "maui/sbin"` ]; then
|
||
|
export PATH=$PATH:@prefix@/sbin
|
||
|
fi
|
||
|
if [ ! `echo $PATH | /bin/grep "maui/bin"` ]; then
|
||
|
export PATH=$PATH:@prefix@/bin
|
||
|
fi
|
||
|
|