From: Francois Marier Date: Sat, 12 Jan 2008 02:43:47 +0000 (+1300) Subject: Turn on extra lintian warnings (lintian -I) when building the debs X-Git-Tag: 0.7.0~5^2 X-Git-Url: http://git.etc.gen.nz/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fremotes%2Forigin%2Frelease-0.6;p=mythtv-status.git Turn on extra lintian warnings (lintian -I) when building the debs Hi Andrew, I just found out about the -I option to Lintian: -I, --display-info display "I:" tags (normally suppressed) It didn't find anything wrong with your package but it did show a few things for another package of mine. Cheers, Francois --- diff --git a/Makefile b/Makefile old mode 100644 new mode 100755 index d4f21bc..2f5ddd6 --- a/Makefile +++ b/Makefile @@ -33,14 +33,14 @@ $(tarball): build/etch/$(deb): @ssh build-etch-i386 "cd `pwd`; $(build)" - @ssh build-etch-i386 "cd `pwd`/..; /usr/bin/lintian -i $(package)_$(version)*.changes" || true + @ssh build-etch-i386 "cd `pwd`/..; /usr/bin/lintian -i -I $(package)_$(version)*.changes" || true @ssh build-etch-i386 "cd `pwd`/..; /usr/bin/linda -i $(package)_$(version)*.changes" || true @mkdir -p build/etch @cp ../$(deb) build/etch build/sid/$(deb): @ssh build-sid-i386 "cd `pwd`; $(build)" - @ssh build-sid-i386 "cd `pwd`/..; /usr/bin/lintian -i $(package)_$(version)*.changes" || true + @ssh build-sid-i386 "cd `pwd`/..; /usr/bin/lintian -i -I $(package)_$(version)*.changes" || true @ssh build-sid-i386 "cd `pwd`/..; /usr/bin/linda -i $(package)_$(version)*.changes" || true @mkdir -p build/sid @cp ../$(deb) build/sid