xbps-src: make print_cross_targets work outside of the root of the repo

if not in `void-packages/`, this only prints `*`
This commit is contained in:
classabbyamp 2024-02-10 02:01:24 -05:00
parent bf60f78b4d
commit e95810b3a1
No known key found for this signature in database
GPG Key ID: 6BE0755918A4C7F5
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
print_cross_targets() {
local f
for f in common/cross-profiles/*.sh; do
for f in "${XBPS_DISTDIR}"/common/cross-profiles/*.sh; do
f=${f%.sh}; f=${f##*/}; printf "\t$f\n"
done
}