mirror of
https://git.proxmox.com/git/fwupd
synced 2025-07-26 18:12:27 +00:00

Allows people to specifiy a white-space separated value for them Void Linux runs them under qemu-user-static like so qemu-aarch64-static -L ./usr/aarch64-linux-gnu ./usr/aarch64-linux-gnu/usr/bin/python3
17 lines
396 B
Bash
Executable File
17 lines
396 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# make-images.sh
|
|
# Copyright (C) 2017 Peter Jones <pjones@redhat.com>
|
|
#
|
|
# Distributed under terms of the GPLv2 license.
|
|
#
|
|
|
|
LOCALEDIR="${DESTDIR}$1"
|
|
PYTHON3="$2"
|
|
|
|
install -m 0755 -d $LOCALEDIR
|
|
${PYTHON3} ${MESON_SOURCE_ROOT}/po/make-images "Installing firmware update…" $LOCALEDIR ${MESON_SOURCE_ROOT}/po/LINGUAS
|
|
for x in ${LOCALEDIR}/*/LC_IMAGES/*.bmp ; do
|
|
gzip -fn9 ${x}
|
|
done
|