Whilst running synaptics-report, there was a shell error message. The line:
        if [ $MAJOR -ge 1 ] && [ $MINOR -ge 4 ]; then
is inadequately quoted. As the line:
    # NOTE: this won't work outside of X
indicates, this part won't work outside of X, in which case $MAJOR and $MINOR 
will be empty strings. You should defensively quote them. ( [ "$MAJOR" -ge 
......)

Also, the logic of the version test is wrong: Should be ( major > 1 || (
major == 1 && minor >= 4 ) ), not ( major >= 1  && minor >= 4 ).

Now, on to the actual attachment....

-- 
[regression] rapid pointer movements with touchpad ignored
https://bugs.launchpad.net/bugs/405943
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in ubuntu.

_______________________________________________
Mailing list: https://launchpad.net/~ubuntu-x-swat
Post to     : ubuntu-x-swat@lists.launchpad.net
Unsubscribe : https://launchpad.net/~ubuntu-x-swat
More help   : https://help.launchpad.net/ListHelp

Reply via email to