summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2020-12-09 12:44:35 (EST)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2020-12-09 12:44:35 (EST)
commit58940e7e9ee1b02c454b6164c60e6333307b6ba3 (patch)
treef13d210fbb9329a7589d5d7a66e9c24ee05f911e /src
parentc18744dc6fcc5a0a82338ab218001d0994c79571 (diff)
ob-gencontrol: Reduce deps after substvars
Diffstat (limited to 'src')
-rw-r--r--src/ob-gencontrol.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ob-gencontrol.sh b/src/ob-gencontrol.sh
index 1c0da12..5a103a0 100644
--- a/src/ob-gencontrol.sh
+++ b/src/ob-gencontrol.sh
@@ -164,18 +164,18 @@ gen_control_bin()
'Essential')
;;
'Depends' | 'Recommends' | 'Suggests' | 'Pre-Depends')
+ value="$(ob_substvars "${value}" "${binary}")"
value="$(ob_reduce_deps \
-a "${OPK_HOST_ARCH}" \
-p "${OPK_HOST_PLAT}" \
-- "${value}")"
- value="$(ob_substvars "${value}" "${binary}")"
;;
'Conflicts' | 'Provides' | 'Replaces')
+ value="$(ob_substvars "${value}" "${binary}")"
value="$(ob_reduce_deps \
-a "${OPK_HOST_ARCH}" \
-p "${OPK_HOST_PLAT}" \
-u -- "${value}")"
- value="$(ob_substvars "${value}" "${binary}")"
;;
esac
printf '%s: %s\n' "${name}" "${value}" | sed 's/[, ]*$//' >&3