# HG changeset patch # User Edho Arief # Date 1320644198 -25200 # Node ID 3d57990fe9d146f373fd916615f1bbdf316de3b3 # Parent 4eeccee282b19a84bf7ff6f456d8b990038fc2fb Path adjustment for Solaris. Mainly for coping with Solaris 10. diff -r 4eeccee282b1 -r 3d57990fe9d1 rc/bash --- a/rc/bash Mon Nov 07 12:34:33 2011 +0700 +++ b/rc/bash Mon Nov 07 12:36:38 2011 +0700 @@ -51,10 +51,11 @@ [ -x /usr/gnu/bin/rm ] && _has_rm_I=y [ -x /usr/gnu/bin/ls ] && _has_gnu_ls=y [ -x /usr/gnu/bin/grep ] && _has_gnu_grep=y - [ -d /usr/xpg4/bin ] && PATH="/usr/xpg4/bin:${PATH}" [ -d /opt/csw/bin ] && PATH="/opt/csw/bin:${PATH}" [ -d /opt/csw/sbin ] && PATH="/opt/csw/sbin:${PATH}" [ -d /usr/gnu/bin ] && PATH="/usr/gnu/bin:${PATH}" + [ -d /usr/sfw/bin ] && PATH="${PATH}:/usr/sfw/bin" + [ -d /usr/xpg4/bin ] && PATH="${PATH}:/usr/xpg4/bin" export PATH alias ping="ping -s" alias ping6="ping -A inet6"