diff options
author | P. J. McDermott <pjm@nac.net> | 2012-09-09 22:44:28 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-09-09 22:44:28 (EDT) |
commit | c1e3106494d343d79aece11bd62cd503a55054f1 (patch) | |
tree | e1b3b1ab9476c87f80c1db0590d7a97cf23f3337 /lib | |
parent | 6e7d565ec2ad3c493c940efd3836fd97e3316d03 (diff) |
Add space before "|" operator in dependency lists.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/deps.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/deps.sh b/lib/deps.sh index f7f6e38..b59d69f 100644 --- a/lib/deps.sh +++ b/lib/deps.sh @@ -158,7 +158,7 @@ ob_reduce_deps() "${_obrd_dep_or}")" if [ -n "${_obrd_dep}" ]; then if [ -n "${_obrd_dep_or_list}" ]; then - _obrd_dep_or_list="${_obrd_dep_or_list}| " + _obrd_dep_or_list="${_obrd_dep_or_list} | " fi _obrd_dep_or_list="${_obrd_dep_or_list}${_obrd_dep}" fi |