summaryrefslogtreecommitdiffstats
path: root/scripts/p-all
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/p-all')
-rwxr-xr-xscripts/p-all6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/p-all b/scripts/p-all
index bdef601..bb95ed2 100755
--- a/scripts/p-all
+++ b/scripts/p-all
@@ -7,7 +7,7 @@ else
echo Note: using PTXDIST=$PTXDIST
tput sgr 0 # back to normal
fi
-PLATFORMS="v7a v8a rpi"
-for p in $PLATFORMS; do
- $PTXDIST --platformconfig=configs/platform-${p}/platformconfig "$@"
+
+for pcfg in configs/platform-*/platformconfig; do
+ $PTXDIST --platformconfig="$pcfg" "$@"
done