mirror of
https://github.com/VSCodium/vscodium.git
synced 2025-01-03 14:52:19 +03:00
build(linux): allows patch per arch for reh
This commit is contained in:
parent
023fee37a3
commit
e8abb85f36
@ -92,6 +92,18 @@ if [[ -d "../patches/linux/reh/" ]]; then
|
||||
done
|
||||
fi
|
||||
|
||||
if [[ -d "../patches/linux/reh/${VSCODE_ARCH}/" ]]; then
|
||||
for file in "../patches/linux/reh/${VSCODE_ARCH}/"*.patch; do
|
||||
if [[ -f "${file}" ]]; then
|
||||
echo applying patch: "${file}";
|
||||
if ! git apply --ignore-whitespace "${file}"; then
|
||||
echo failed to apply patch "${file}" >&2
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
if [[ -n "${USE_GNUPP2A}" ]]; then
|
||||
INCLUDES=$(cat <<EOF
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user