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

to prevent it from adding timestamps to .gz headers to make package builds reproducible See https://reproducible-builds.org/ for why this is good.
13 lines
447 B
Bash
Executable File
13 lines
447 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# make-images.sh
|
|
# Copyright (C) 2017 Peter Jones <pjones@redhat.com>
|
|
#
|
|
# Distributed under terms of the GPLv2 license.
|
|
#
|
|
install -m 0755 -d ${MESON_INSTALL_DESTDIR_PREFIX}/share/locale/
|
|
${MESON_SOURCE_ROOT}/po/make-images "Installing firmware update…" ${MESON_INSTALL_DESTDIR_PREFIX}/share/locale/ ${MESON_SOURCE_ROOT}/po/LINGUAS
|
|
for x in ${MESON_INSTALL_DESTDIR_PREFIX}/share/locale/*/LC_IMAGES/*.bmp ; do
|
|
gzip -fn9 ${x}
|
|
done
|