Package: minicom Version: 2.1-10 Severity: normal The binary test operators -a and -o aren't required by posix, yet your maintscript uses them in a #! /bin/sh script. #! /bin/sh on Debian is only required to implement posix (and respect the -n option to echo).
For portability, [ .. -a .. ] should be changed to use the shell && operator: [ .. ] && [ .. ], and the same for [ .. -o .. ] and ||: [ .. ] || [ .. ]. If the maintscript uses other nonposix extensions, it might be easier to use #! /bin/bash instead (since bash is Essential: yes). -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

