Simplify sorting ports in build order.

This commit is contained in:
Jonas 'Sortie' Termansen 2024-01-27 20:41:12 +01:00
parent 04b605477e
commit 1ddb9f9cb7
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ if [ "$OPERATION" = build ]; then
DEPENDENCIES="$(PACKAGES="$PACKAGES" \
"$(dirname -- "$0")"/list-packages.sh \
--dependencies $PACKAGE)"
echo "$PACKAGE: $(echo "$DEPENDENCIES" | tr '\n' ' ' | sed -E 's/ +$/\n/')"
echo "$PACKAGE: $(echo "$DEPENDENCIES" | tr '\n' ' ')"
echo " @echo $PACKAGE"
done;
printf ".PHONY:"