diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-04-12 15:05:51 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-04-12 15:33:10 +0200 |
commit | 000f603a24cab8960fac6907a56dc5f98bf7d61e (patch) | |
tree | 3991591c4ddf819e44b32b49c648e910841ec17e | |
parent | 6420bccb73f6bd97c936ad756de35288b425ea8b (diff) | |
download | arctica-greeter-000f603a24cab8960fac6907a56dc5f98bf7d61e.tar.gz arctica-greeter-000f603a24cab8960fac6907a56dc5f98bf7d61e.tar.bz2 arctica-greeter-000f603a24cab8960fac6907a56dc5f98bf7d61e.zip |
guest-session: Make path to lightdm-guest-session executable adaptable to the lightdm package this greeter is co-installed with.
Fixes ArcticaProject/arctica-greeter#15.
-rw-r--r-- | configure.ac | 15 | ||||
-rw-r--r-- | data/50-arctica-greeter-guest-wrapper.conf.in | 2 | ||||
-rw-r--r-- | data/Makefile.am | 2 |
3 files changed, 17 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 9426e75..8b062dd 100644 --- a/configure.ac +++ b/configure.ac @@ -54,6 +54,21 @@ else AC_DEFINE_UNQUOTED([SD_BINARY], ["$SD_BINARY"], [Path to g-s-d]) fi +dnl customize path/name to/of lightdm-guest-session wrapper binary + +#AC_ARG_VAR([GUEST_WRAPPER_BINARY], +# [AC_HELP_STRING([GUEST_WRAPPER_BINARY=@<:@path-to-lightdm-guest-session@:>@], +# [Explicitly set full path to LightDM's lightdm-guest-session wrapper executable @<:@default=${libexecdir}/lightdm/lightdm-guest-session@:>@])] + +AC_ARG_VAR([GUEST_WRAPPER_BINARY], + [Explicitly set full path to LightDM's lightdm-guest-session wrapper executable @<:@default=${libexecdir}/lightdm/lightdm-guest-session@:>@] +) +if test -z "${GUEST_WRAPPER_BINARY}"; then + GUEST_WRAPPER_BINARY="${libexecdir}/lightdm/lightdm-guest-session" +fi +AC_MSG_NOTICE([Using guest wrapper executable: ${GUEST_WRAPPER_BINARY}]) +AC_SUBST(GUEST_WRAPPER_BINARY) + AC_CHECK_PROG(VALGRIND, valgrind, valgrind --trace-children=yes --num-callers=256) AC_SUBST(VALGRIND) diff --git a/data/50-arctica-greeter-guest-wrapper.conf.in b/data/50-arctica-greeter-guest-wrapper.conf.in index 1ccd04d..c124c84 100644 --- a/data/50-arctica-greeter-guest-wrapper.conf.in +++ b/data/50-arctica-greeter-guest-wrapper.conf.in @@ -1,2 +1,2 @@ [Seat:*] -guest-wrapper=@libexecdir@/lightdm/lightdm-guest-session +guest-wrapper=@GUEST_WRAPPER_BINARY@ diff --git a/data/Makefile.am b/data/Makefile.am index 0cd1c67..55a9d5b 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -4,7 +4,7 @@ $(AM_V_GEN) sed -e "s|\@pkglibexecdir\@|$(pkglibexecdir)|" $< > $@ 50-arctica-greeter-guest-wrapper.conf: 50-arctica-greeter-guest-wrapper.conf.in - $(AM_V_GEN) sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@ + $(AM_V_GEN) sed -e "s|\@GUEST_WRAPPER_BINARY\@|$(GUEST_WRAPPER_BINARY)|" $< > $@ lightdm_confdir = $(datadir)/lightdm/lightdm.conf.d lightdm_conf_DATA = \ |