diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2012-11-07 00:22:33 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2012-11-07 00:22:33 +0000 |
commit | 1b0130961ebc308bba4c9ced3988558bfac103d9 (patch) | |
tree | 40dcef0a3f194d4741a8ae3ea9c12015e0bc89df /sh/rc-functions.sh.in | |
parent | 3809eac54d575d52d8793df38f826f1d7d7398fb (diff) |
checkbashisms: clean up export statements.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'sh/rc-functions.sh.in')
-rw-r--r-- | sh/rc-functions.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/rc-functions.sh.in b/sh/rc-functions.sh.in index de430742..7fe12942 100644 --- a/sh/rc-functions.sh.in +++ b/sh/rc-functions.sh.in @@ -109,5 +109,5 @@ _depend() { # Add our sbin to $PATH case "$PATH" in "$RC_LIBEXECDIR"/sbin|"$RC_LIBEXECDIR"/sbin:*);; - *) export PATH="$RC_LIBEXECDIR/sbin:$PATH";; + *) PATH="$RC_LIBEXECDIR/sbin:$PATH" ; export PATH ;; esac |