diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2008-10-09 14:11:46 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2008-10-09 14:11:46 +0200 |
commit | 9e4dae22d2ccce3a9d4fb0b2a087c98c7e47cafb (patch) | |
tree | e840565f3655e328438250b59626abb896fdfc5b /include | |
parent | 39496d425558bea39e4b2b0bd4eadbb26add1cbf (diff) |
include/conflicts: Use $HOME instead of /home/derf...
Diffstat (limited to 'include')
-rwxr-xr-x | include/conflicts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/conflicts b/include/conflicts index d2af1a0..1e119c0 100755 --- a/include/conflicts +++ b/include/conflicts @@ -18,11 +18,11 @@ is_in_path () { return $ret } -# a simple sfpath=${fpath:#/home/derf*} won't work -for i in ${fpath:#/home/derf*}; { +# a simple sfpath=${fpath:#${HOME}*} won't work +for i in ${fpath:#${HOME}*}; { sfpath+=$i } -for i in ${path:#/home/derf*}; { +for i in ${path:#${HOME}*}; { spath+=$i } |