mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-11-16 05:15:36 +00:00
f81ed3d063
This makes sure we can load the plugins from the build directory.
11 lines
228 B
Bash
Executable file
11 lines
228 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
ABS_BUILDDIR='@ABS_BUILDDIR@'
|
|
ABS_SRCDIR='@ABS_SRCDIR@'
|
|
|
|
export GSETTINGS_SCHEMA_DIR="${ABS_BUILDDIR}/data"
|
|
export CALLS_PLUGIN_DIR="${ABS_BUILDDIR}/plugins"
|
|
set -x
|
|
exec "${ABS_BUILDDIR}/src/gnome-calls" "$@"
|
|
|