mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-02 18:57:26 +00:00
12 lines
350 B
Bash
Executable File
12 lines
350 B
Bash
Executable File
#!/bin/sh
|
|
if [ -z $MESON_INSTALL_PREFIX ]; then
|
|
echo 'This is meant to be ran from Meson only!'
|
|
exit 1
|
|
fi
|
|
|
|
SYSTEMDUNITDIR=$1
|
|
|
|
echo 'Updating systemd deps'
|
|
mkdir -p ${DESTDIR}${SYSTEMDUNITDIR}/system-update.target.wants
|
|
ln -sf ../fwupd-offline-update.service ${DESTDIR}${SYSTEMDUNITDIR}/system-update.target.wants/fwupd-offline-update.service
|