summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-03-18 14:30:25 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-03-18 14:30:25 (EDT)
commit16a6b4974d54f2f56a8fd38a4438850870c77230 (patch)
tree4239715f3dc9ee70f7c540bd00bcdadcbf863b22 /lib
parent3076e8c2a1175188f5262b7c8f7bc3f7703841ee (diff)
Delimit operands of ob_parse_dep()
Diffstat (limited to 'lib')
-rw-r--r--lib/deps.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/deps.sh b/lib/deps.sh
index 649cfe0..32b05e8 100644
--- a/lib/deps.sh
+++ b/lib/deps.sh
@@ -246,7 +246,7 @@ ob_reduce_deps()
for dep_or in ${dep_and}; do
unset IFS
dep="$(ob_parse_dep -a "${host_arch}" \
- -p "${host_plat}" "${dep_or}")"
+ -p "${host_plat}" -- "${dep_or}")"
if [ -n "${dep}" ]; then
if [ -n "${dep_or_list}" ]; then
dep_or_list="${dep_or_list} | "
@@ -263,7 +263,7 @@ ob_reduce_deps()
fi
else
dep="$(ob_parse_dep -a "${host_arch}" \
- -p "${host_plat}" "${dep_and}")"
+ -p "${host_plat}" -- "${dep_and}")"
if [ -n "${dep}" ]; then
if [ -n "${dep_list}" ]; then
dep_list="${dep_list}, "