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)) {

lintian: r558 - in trunk: checks debian testset/scripts/debian

2006-02-09 Thread rra
Author: rra Date: 2006-02-09 20:29:34 +0100 (Thu, 09 Feb 2006) New Revision: 558 Modified: trunk/checks/scripts trunk/debian/changelog trunk/testset/scripts/debian/rules Log: + [RA] Make the syntax checking of shell scripts more robust against filenames containing shell

calling update-menus from prerm

2006-02-09 Thread Michael Stilkerich
Hi, I got yet another question. I'd like to call an update-menus --menumethod mymethod --remove in the prerm script in order to remove any files generated by the menu-method. I can't do this in the postrm script since I need another script of the package that is not a configuration file.