Browse Source

Fix order of scripts for mod bootstrap

Signed-off-by: falkTX <falktx@falktx.com>
pull/28/head
falkTX 1 year ago
parent
commit
9f18dfcb7d
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 9 additions and 5 deletions
  1. +9
    -5
      bootstrap-mod.sh

+ 9
- 5
bootstrap-mod.sh View File

@@ -16,13 +16,9 @@ if [ -z "${target}" ]; then
fi

# ---------------------------------------------------------------------------------------------------------------------
# source setup code
# LTO is unwanted for MOD builds, make sure it is off

export PAWPAW_SKIP_LTO=1
source setup/check_target.sh
source setup/env.sh
source setup/functions.sh
source setup/versions.sh

# ---------------------------------------------------------------------------------------------------------------------
# run bootstrap dependencies
@@ -32,6 +28,14 @@ source setup/versions.sh
./bootstrap-plugins.sh "${target}"
./bootstrap-python.sh "${target}"

# ---------------------------------------------------------------------------------------------------------------------
# source setup code

source setup/check_target.sh
source setup/env.sh
source setup/functions.sh
source setup/versions.sh

# Use local Qt on Linux builds
if [ "${LINUX}" -eq 1 ]; then
if [ "${LINUX_TARGET}" = "linux-aarch64" ]; then


Loading…
Cancel
Save