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
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to