newapkbuild: escape meson variables

Otherwise we'll generate e.g. 'meson compile -j 7 -C output'
This commit is contained in:
Luca Weiss 2021-03-20 19:22:15 +01:00 committed by Natanael Copa
parent 3af74788bb
commit 05d36a90ce
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ build_meson() {
--localstatedir=/var \\
--buildtype=plain \\
. output
meson compile ${JOBS:+-j ${JOBS}} -C output
meson compile \${JOBS:+-j \${JOBS}} -C output
__EOF__
}