build: Make gimp build scripts work on tarballs too

This commit is contained in:
Bruno Lopes 2026-04-02 23:12:49 -03:00
parent febeb89c55
commit a9e1f665dd
3 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@ elif [ $(basename "$PWD") = 'flatpak' ]; then
cd ../../..
fi
if [ -z "$GITLAB_CI" ]; then
git submodule update --init
git submodule update --init || true #true is for this script work on tarballs too
fi

View file

@ -14,7 +14,7 @@ elif [ $(basename "$PWD") = 'snap' ]; then
cd ../../..
fi
if [ -z "$GITLAB_CI" ]; then
git submodule update --init
git submodule update --init || true #true is for this script work on tarballs too
fi

View file

@ -14,7 +14,7 @@ elif [ $(basename "$PWD") = 'macos' ]; then
cd ../../..
fi
if [ -z "$GITLAB_CI" ]; then
git submodule update --init
git submodule update --init || true #true is for this script work on tarballs too
NON_RELOCATABLE_OPTION='-Drelocatable-bundle=no'
fi