diff options
-rw-r--r-- | system/lxdm/lxdm.SlackBuild | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/system/lxdm/lxdm.SlackBuild b/system/lxdm/lxdm.SlackBuild index b872fdbab6..6400585572 100644 --- a/system/lxdm/lxdm.SlackBuild +++ b/system/lxdm/lxdm.SlackBuild @@ -25,7 +25,7 @@ PRGNAM=lxdm VERSION=${VERSION:-0.5.3} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -120,6 +120,14 @@ for file in LoginReady PostLogin PostLogout PreLogin PreReboot PreShutdown lxdm. mv $PKG/etc/lxdm/$file $PKG/etc/lxdm/$file.new ; done +# Look for language defaults were we usually store 'em +cat << "EOF" > $PKG/usr/sbin/lxdm +#!/bin/sh +. /etc/profile.d/lang.sh +export LANG +exec /usr/sbin/lxdm-binary $* +EOF + find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |