source: proiecte/PPPP/gdm/debian/patches/06_run_xsession.d.patch @ 134

Last change on this file since 134 was 134, checked in by (none), 14 years ago

gdm sources with the modifications for webcam

File size: 789 bytes
  • data/Xsession.in

    #
    # Description: Run /etc/X11/Xsession.d/.
    # Ubuntu-Specific: /etc/X11/Xsession.d is a Debianism/Ubuntuism
    #
    diff -Nur -x '*.orig' -x '*~' gdm-2.27.4/data/Xsession.in gdm-2.27.4.new/data/Xsession.in
    old new  
    186186    done
    187187fi
    188188
     189# run /etc/X11/Xsession.d/
     190OPTIONFILE=/etc/X11/Xsession.options
     191if [ -d /etc/X11/Xsession.d ]; then
     192    for i in `ls /etc/X11/Xsession.d/` ; do
     193        if [ -r "/etc/X11/Xsession.d/$i" ] && expr "$i" : '^[[:alnum:]_-]\+$' > /dev/null; then
     194            . "/etc/X11/Xsession.d/$i"
     195        fi
     196    done
     197fi
     198
    189199if [ "x$command" = "xcustom" ] ; then
    190200  if [ -x "$HOME/.xsession" ]; then
    191201    command="$HOME/.xsession"
Note: See TracBrowser for help on using the repository browser.