Re: Lintian warnings/errors

2006-03-28 Thread Michael Stilkerich
* Russ Allbery [EMAIL PROTECTED] [2006-03-05 03:24]: Michael Stilkerich [EMAIL PROTECTED] writes: * Russ Allbery [EMAIL PROTECTED] [2006-02-09 11:37]: lintian has code specifically to recognize this situation. I'm not sure why it isn't working. Can I see the rules and control file for

Re: Lintian warnings/errors

2006-03-04 Thread Russ Allbery
Michael Stilkerich [EMAIL PROTECTED] writes: * Russ Allbery [EMAIL PROTECTED] [2006-02-09 11:37]: lintian has code specifically to recognize this situation. I'm not sure why it isn't working. Can I see the rules and control file for this package somewhere? sure, see attachment. I think

Re: Lintian warnings/errors

2006-02-09 Thread Jeroen van Wolffelaar
On Wed, Feb 08, 2006 at 05:21:28PM -0800, Michael Stilkerich wrote: Hi, as requested in the lintian documentation I e-Mail you before adding overrides to my package. I get an error and a warning by lintian when checking my package W: fvwm-crystal source: build-depends-without-arch-dep

Re: Lintian warnings/errors

2006-02-09 Thread Christoph Berg
Re: Michael Stilkerich in [EMAIL PROTECTED] The error is an E: fvwm-crystal: shell-script-fails-syntax-check ./usr/share/fvwm-crystal/fvwm/Applications/20~Games/Arcade/~jumpnbump-menu~Jump'N'Bump #!/bin/sh exec jumpnbump-menu $@ The general rule for sh scripts is always quote stuff, so

Re: Lintian warnings/errors

2006-02-09 Thread Michael Stilkerich
Hi, * Christoph Berg [EMAIL PROTECTED] [2006-02-09 07:21]: Hi, The general rule for sh scripts is always quote stuff, so the above line should read I'd like to hand back this one *SCNR* :-) (just kidding) Changing lintian-1.23.15/checks/scripts:312 if (system($interpreter -n

Re: Lintian warnings/errors

2006-02-09 Thread Russ Allbery
Michael Stilkerich [EMAIL PROTECTED] writes: I'd like to hand back this one *SCNR* :-) (just kidding) Changing lintian-1.23.15/checks/scripts:312 if (system($interpreter -n unpacked/$filename /dev/null 21)) { to if (system($interpreter -n \unpacked/$filename\ /dev/null 21)) {