From 16a6b4974d54f2f56a8fd38a4438850870c77230 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Mon, 18 Mar 2019 14:30:25 -0400 Subject: Delimit operands of ob_parse_dep() --- (limited to 'lib') 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}, " -- cgit v0.9.1