summaryrefslogtreecommitdiffstats
path: root/lib/deps.sh
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-09-09 17:20:47 (EDT)
committer P. J. McDermott <pjm@nac.net>2012-09-09 17:20:47 (EDT)
commit5b20da6573fba393a25d4f61dceb05a537628a99 (patch)
tree562ece00cab893fd4810acda303a7fbf74c7474d /lib/deps.sh
parentcfbe5419629c38fce8d7b83fa09af22881a151f8 (diff)
Fix substring pattern in dependency parsing.
Diffstat (limited to 'lib/deps.sh')
-rw-r--r--lib/deps.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/deps.sh b/lib/deps.sh
index 521aa2f..74b4bc6 100644
--- a/lib/deps.sh
+++ b/lib/deps.sh
@@ -79,7 +79,7 @@ ob_parse_dep()
if [ "${_obpd_dep# (*)}" != "${_obpd_dep}" ]; then
_obpd_relver="${_obpd_dep# (}"
_obpd_relver="${_obpd_relver%%)*}"
- _obpd_dep="${_obpd_dep#(*)}"
+ _obpd_dep="${_obpd_dep# (*)}"
_obpd_rel="${_obpd_relver% *}"
_obpd_ver="${_obpd_relver##* }"
fi