~m-alaa8/ubuntu/raring/im-switch/fix-for-621204

« back to all changes in this revision

Viewing changes to xinput.sh

  • Committer: Bazaar Package Importer
  • Author(s): Ming Hua
  • Date: 2007-12-28 20:37:46 UTC
  • mfrom: (2.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20071228203746-0a5rxzpjxitwaytc
Tags: 1.16ubuntu1
* Add md5sum of the /etc/X11/Xsession.d/90im-switch conffile in version 1.3
  (dapper version) in the postinst script, so that if this file is
  unmodified, it will be deleted during dapper-to-hardy upgrade.
  (LP: #176660)
* Change the Maintainer field in debian/control to Ubuntu Core Developers,
  and move Debian's maintainer to XSBC-Original-Maintainer field, according
  to the specification.

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
[ -n "$XMODIFIERS" ] && export XMODIFIERS || true
62
62
 
63
63
# execute XIM_PROGRAM
64
 
[ -n "$XIM_PROGRAM" -a -x "$XIM_PROGRAM" ] && eval "$XIM_PROGRAM $XIM_ARGS &" || true
65
 
 
 
64
if [ -n "$XIM_PROGRAM" -a -x "$XIM_PROGRAM" ]; then
 
65
         if [ -z "$XIM_PROGRAM_SETS_ITSELF_AS_DAEMON" ]; then
 
66
                eval "$XIM_PROGRAM $XIM_ARGS &" || true
 
67
        else
 
68
                eval "$XIM_PROGRAM $XIM_ARGS" || true
 
69
        fi
 
70
fi
66
71
# execute XIM_PROGRAM_XTRA
67
72
[ -n "$XIM_PROGRAM_XTRA" ] && eval "$XIM_PROGRAM_XTRA &" || true
68
73