diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2023-09-30 14:16:25 +0200 |
---|---|---|
committer | Mihai Moldovan <ionic@ionic.de> | 2023-10-05 14:04:49 +0200 |
commit | a94b2292e8576ccddf1cbd5159f24f6265c85e73 (patch) | |
tree | 1d2cf58f89dcc854a75a42995e9734b68915bf2a /debian/rules | |
parent | 55cfcc8b789c23b891d32e50e7986bafe9cee280 (diff) | |
download | arctica-greeter-a94b2292e8576ccddf1cbd5159f24f6265c85e73.tar.gz arctica-greeter-a94b2292e8576ccddf1cbd5159f24f6265c85e73.tar.bz2 arctica-greeter-a94b2292e8576ccddf1cbd5159f24f6265c85e73.zip |
debian/: Install all helper scripts to LIBEXECDIR.
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/debian/rules b/debian/rules index 76c7912..5a34f02 100755 --- a/debian/rules +++ b/debian/rules @@ -20,11 +20,11 @@ override_dh_autoreconf: override_dh_auto_configure: set -x; if [ -x "$(GUEST_WRAPPER_BINARY_LIBEXEC)" ]; then \ - dh_auto_configure -- GUEST_WRAPPER_BINARY=/usr/libexec/lightdm/lightdm-guest-session; \ + dh_auto_configure -- --libexecdir=/usr/libexec GUEST_WRAPPER_BINARY=/usr/libexec/lightdm/lightdm-guest-session; \ elif [ -x "${GUEST_WRAPPER_BINARY_M_LIB}" ]; then \ - dh_auto_configure -- GUEST_WRAPPER_BINARY=/usr/lib/$(DEB_HOST_MULTIARCH)/lightdm/lightdm-guest-session; \ + dh_auto_configure -- --libexecdir=/usr/libexec GUEST_WRAPPER_BINARY=/usr/lib/$(DEB_HOST_MULTIARCH)/lightdm/lightdm-guest-session; \ elif [ -x "${GUEST_WRAPPER_BINARY_LIB}" ]; then \ - dh_auto_configure -- GUEST_WRAPPER_BINARY=/usr/lib/lightdm/lightdm-guest-session; \ + dh_auto_configure -- --libexecdir=/usr/libexec GUEST_WRAPPER_BINARY=/usr/lib/lightdm/lightdm-guest-session; \ else \ echo "Error: GUEST_WRAPPER_BINARY (lightdm-guest-session executable from LightDM) not found!"; \ exit 1; \ |