diff options
author | Ben Woods <woodsb02@FreeBSD.org> | 2017-02-12 22:10:53 +0800 |
---|---|---|
committer | Ben Woods <woodsb02@FreeBSD.org> | 2017-02-12 22:10:53 +0800 |
commit | 1ecfa8ea323e8887f994d5be0ed6189eb0f90427 (patch) | |
tree | 4b4cfd95e3305ea90f65922081d01035218d9d29 | |
parent | 7e12690f7660f1b5f8b8ce964ac0d3bc452820d6 (diff) | |
download | freebsd-ports-gnome-1ecfa8ea323e8887f994d5be0ed6189eb0f90427.tar.gz freebsd-ports-gnome-1ecfa8ea323e8887f994d5be0ed6189eb0f90427.tar.zst freebsd-ports-gnome-1ecfa8ea323e8887f994d5be0ed6189eb0f90427.zip |
Fix typo in Xsession file introduced in r433837
-rw-r--r-- | x11/lightdm/Makefile | 2 | ||||
-rw-r--r-- | x11/lightdm/files/Xsession.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/x11/lightdm/Makefile b/x11/lightdm/Makefile index be3ffb1d2fba..9017e1a05399 100644 --- a/x11/lightdm/Makefile +++ b/x11/lightdm/Makefile @@ -3,7 +3,7 @@ PORTNAME= lightdm PORTVERSION= 1.20.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11 MASTER_SITES= https://launchpad.net/${PORTNAME}/${PORTVERSION:R}/${PORTVERSION}/+download/ diff --git a/x11/lightdm/files/Xsession.in b/x11/lightdm/files/Xsession.in index feec550a1ef3..7d135e4775a5 100644 --- a/x11/lightdm/files/Xsession.in +++ b/x11/lightdm/files/Xsession.in @@ -33,7 +33,7 @@ done # Load xmodmap if not using XKB if [ -z "$XKB_IN_USE" ]; then - for file in "%%LOCALBASE%%/etc/X11/Xmodmap" "%%LOCALBASE%%/etc/X11/.Xkbmap" "%%LOCALBASE%%/etc/X11/xinit/Xkbmap" "%%LOCALBASE%%/etc/X11/xinit/.Xkbmap" "$HOME/.Xmodmap"; do + for file in "%%LOCALBASE%%/etc/X11/Xmodmap" "%%LOCALBASE%%/etc/X11/.Xmodmap" "%%LOCALBASE%%/etc/X11/xinit/Xmodmap" "%%LOCALBASE%%/etc/X11/xinit/.Xmodmap" "$HOME/.Xmodmap"; do if [ -f "$file" ]; then echo "Loading modmap: $file" xmodmap "$file" |