summaryrefslogtreecommitdiffstats
path: root/src/ob-buildenv.sh
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-03-13 19:21:53 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-03-13 19:21:53 (EDT)
commit34f21a5b49952dcb80acde5fafd85267c69e3b1d (patch)
treeb0a288fddaeab2cb9894755b903f6103df6f464d /src/ob-buildenv.sh
parent7ce619cbbac534e9cf1a934189e57c8464ea2c45 (diff)
ob_parse_dep(): Swap -p and -P option letters
Be consistent with opkbuild and other executable CLIs.
Diffstat (limited to 'src/ob-buildenv.sh')
-rw-r--r--src/ob-buildenv.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ob-buildenv.sh b/src/ob-buildenv.sh
index dd16146..2b95f0f 100644
--- a/src/ob-buildenv.sh
+++ b/src/ob-buildenv.sh
@@ -26,7 +26,7 @@ setup_build_helper()
IFS=', '
for dep in $(ob_get_source_parameter 'Build-Depends'); do
unset IFS
- ob_parse_dep -p dep_pkg "${dep}" >/dev/null
+ ob_parse_dep -P dep_pkg "${dep}" >/dev/null
if [ -r "${HELPERDIR}/${dep_pkg}" ]; then
. "${HELPERDIR}/${dep_pkg}"
PATH="${helper_path}:${PATH}"