Browse Source

do not require meson if skipping lv2 stuff

Signed-off-by: falkTX <falktx@falktx.com>
pull/28/head
falkTX 1 year ago
parent
commit
a2a64cb047
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 10 additions and 8 deletions
  1. +1
    -1
      .github/workflows/bootstrap.yml
  2. +9
    -7
      bootstrap-plugins.sh

+ 1
- 1
.github/workflows/bootstrap.yml View File

@@ -4,7 +4,7 @@ on:
push:

env:
CACHE_VERSION: 22
CACHE_VERSION: 1
DEBIAN_FRONTEND: noninteractive
HOMEBREW_NO_AUTO_UPDATE: 1



+ 9
- 7
bootstrap-plugins.sh View File

@@ -43,14 +43,16 @@ if [ -z "${autoconf}" ]; then
exit 2
fi

if [ -z "${meson}" ]; then
echo "missing 'meson' program, cannot continue!"
exit 2
fi
if [ -z "${PAWPAW_SKIP_LV2}" ]; then
if [ -z "${meson}" ]; then
echo "missing 'meson' program, cannot continue!"
exit 2
fi

if [ -z "${ninja}" ]; then
echo "missing 'ninja' program, cannot continue!"
exit 2
if [ -z "${ninja}" ]; then
echo "missing 'ninja' program, cannot continue!"
exit 2
fi
fi

# ---------------------------------------------------------------------------------------------------------------------


Loading…
Cancel
Save