mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-21 09:27:55 +00:00
10 lines
281 B
Bash
Executable File
10 lines
281 B
Bash
Executable File
#!/bin/sh
|
|
export ROOT=#ROOT#
|
|
export FWUPD_LOCALSTATEDIR=${ROOT}/dist
|
|
export FWUPD_SYSCONFDIR=${ROOT}/dist/etc
|
|
export LD_LIBRARY_PATH=${ROOT}/dist/lib/$(gcc -dumpmachine)
|
|
if [ -n "${DEBUG}" ]; then
|
|
DEBUG="gdbserver localhost:9091"
|
|
fi
|
|
${DEBUG} ${ROOT}/dist/#EXECUTABLE# "$@"
|