newapkbuild: fix meson setup argument order

according to the meson documentation the arguments are
'meson setup <builddir> <srcdir>'. meson is very relaxed and allows the
wrong order but this behavior should not be endorsed by a template.
This commit is contained in:
Sertonix 2024-07-25 22:00:39 +02:00 committed by Natanael Copa
parent dd66d17b49
commit d235d5c5a4

View File

@ -84,7 +84,7 @@ build_meson() {
cat >>APKBUILD<<__EOF__
abuild-meson \\
. output
output .
meson compile -C output
__EOF__
}