Skip to content

Commit

Permalink
When modifying PATH, export it (for Solaris).
Browse files Browse the repository at this point in the history
  • Loading branch information
Wayne Davison committed Sep 15, 2011
1 parent 998df4b commit abc7966
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion runtests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,10 @@ RUNSHFLAGS='-e'
export RUNSHFLAGS

# for Solaris
[ -d /usr/xpg4/bin ] && PATH="/usr/xpg4/bin/:$PATH"
if [ -d /usr/xpg4/bin ]; then
PATH="/usr/xpg4/bin/:$PATH"
export PATH
fi

if [ "x$loglevel" != x ] && [ "$loglevel" -gt 8 ]; then
if set -x; then
Expand Down

0 comments on commit abc7966

Please sign in to comment.