summaryrefslogtreecommitdiff
path: root/Mk/Scripts/depends-list.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Mk/Scripts/depends-list.sh')
-rw-r--r--Mk/Scripts/depends-list.sh17
1 files changed, 13 insertions, 4 deletions
diff --git a/Mk/Scripts/depends-list.sh b/Mk/Scripts/depends-list.sh
index 0d3945c85359..39a0c5656f50 100644
--- a/Mk/Scripts/depends-list.sh
+++ b/Mk/Scripts/depends-list.sh
@@ -6,11 +6,15 @@ set -e
. ${dp_SCRIPTSDIR}/functions.sh
+flavors=0
recursive=0
missing=0
requires_wrkdir=0
-while getopts "mrw" FLAG; do
+while getopts "fmrw" FLAG; do
case "${FLAG}" in
+ f)
+ flavors=1
+ ;;
m)
missing=1
recursive=1
@@ -71,14 +75,19 @@ check_dep() {
d=${d%@*}
;;
esac
+ if [ ${flavors} -eq 1 -a -n "${FLAVOR:-}" ]; then
+ port_display="${d}@${FLAVOR}"
+ else
+ port_display="${d}"
+ fi
case " ${checked} " in
*\ ${d}\ *) continue ;; # Already checked
esac
checked="${checked} ${d}"
# Check if the dependency actually exists or skip otherwise.
- if [ ! -d ${d} ]; then
- echo "${dp_PKGNAME}: \"${d}\" non-existent -- dependency list incomplete" >&2
+ if [ ! -d "${d}" ]; then
+ echo "${dp_PKGNAME}: \"${port_display}\" non-existent -- dependency list incomplete" >&2
continue
fi
@@ -104,7 +113,7 @@ check_dep() {
if [ ${requires_wrkdir} -eq 1 ] && ! [ -d "${wrkdir}" ]; then
show_dep=0
fi
- [ ${show_dep} -eq 1 ] && echo ${d}
+ [ ${show_dep} -eq 1 ] && echo "${port_display}"
if [ ${recursive} -eq 1 -o ${requires_wrkdir} -eq 1 -a ${show_dep} -eq 1 ]; then
check_dep $@
fi