[X2Go-Dev] Bug#278: Bug#278: X2Go issue (in src:x2goserver) has been marked as pending for release

Orion Poplawski orion at cora.nwra.com
Thu Nov 28 00:32:13 CET 2013


On 07/31/2013 01:06 AM, Mike Gabriel wrote:
> tag #278 pending
> fixed #278 4.0.1.7
> thanks
>
> Hello,
>
> X2Go issue #278 (src:x2goserver) reported by you has been
> fixed in X2Go Git. You can see the changelog below, and you can
> check the diff of the fix at:
>
>      http://code.x2go.org/gitweb?p=x2goserver.git;a=commitdiff;h=6567318
>
> The issue will most likely be fixed in src:x2goserver (4.0.1.7).
>
> light+love
> X2Go Git Admin (on behalf of the sender of this mail)
>
> ---
> commit 6567318201544d31d380a7fabb90de87bfbdb89a
> Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
> Date:   Wed Jul 31 09:06:01 2013 +0200
>
>      Fine-tune x2goserver-xsession/Makefile: if /etc/X11 has Xsession.d and/or Xsession.options they get symlinked into /etc/x2go. Otherwise Xsession.d and Xsession.options are created under /etc/x2go as empty dir/file. (Fixes: #278).
>
> diff --git a/debian/changelog b/debian/changelog
> index ce613a0..d6b0af6 100644
> --- a/debian/changelog
> +++ b/debian/changelog
> @@ -7,6 +7,11 @@ x2goserver (4.0.1.7-0~x2go1) UNRELEASED; urgency=low
>         (Fixes: #278).
>
>     [ Mike Gabriel ]
> +  * New upstream version (4.0.1.7):
> +    - Fine-tune x2goserver-xsession/Makefile: if /etc/X11 has Xsession.d and/or
> +      Xsession.options they get symlinked into /etc/x2go. Otherwise Xsession.d
> +      and Xsession.options are created under /etc/x2go as empty dir/file.
> +      (Fixes: #278).
>     * /debian/control:
>       - Update LONG_DESCRIPTIONS.
>

XSESSIONDIR ?= /etc/X11/Xsession.d
XSESSIONOPTIONFILE ?= /etc/X11/Xsession.options

         if [ -e $(XSESSIONOPTIONFILE) ]; then $(INSTALL_SYMLINK) 
$(XSESSIONOPTIONFILE) $(DESTDIR)$(ETCDIR)/Xsession.options; else touch 
$(DESTDIR)$(ETCDIR)/Xsession.options; fi
         if [ -d $(XSESSIONDIR) ]; then $(INSTALL_SYMLINK) 
$(XSESSIONDIR) $(DESTDIR)$(ETCDIR)/Xsession.d; else $(INSTALL_DIR) 
$(DESTDIR)$(ETCDIR)/Xsession.d; fi


One unfortunate side effect of this is that 
XSESSIONDIR/XSESSIONOPTIONFILE needs to be present in the buildroot for 
these directories to get linked.


-- 
Orion Poplawski
Technical Manager                     303-415-9701 x222
NWRA/CoRA Division                    FAX: 303-415-9702
3380 Mitchell Lane                  orion at cora.nwra.com
Boulder, CO 80301              http://www.cora.nwra.com



More information about the x2go-dev mailing list