mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
The xpg4-path was mistyped. Fix it.
darcs-hash:20060801005736-ac50b-ef8389777e012f9f0b6edcb3df3d638158f87373.gz
This commit is contained in:
parent
8833e8f4ea
commit
65f4d6e866
1 changed files with 3 additions and 3 deletions
|
@ -8,9 +8,9 @@
|
|||
# This is a Solaris-specific test to modify the PATH so that
|
||||
# Posix-conformant tools are used by default.
|
||||
|
||||
if test -d /usr/bin/xpg4
|
||||
if not echo $PATH | grep /usr/bin/xpg4 >/dev/null
|
||||
set PATH /usr/bin/xpg4 $PATH
|
||||
if test -d /usr/xpg4/bin
|
||||
if not contains /usr/xpg4/bin $PATH
|
||||
set PATH /usr/xpg4/bin $PATH
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue