This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository scala-2.10.
commit 238bdbfe6398dc852291dbdaf6dedf994f3db307 Author: Mehdi Dogguy <[email protected]> Date: Mon Jan 26 18:40:36 2009 +0100 binary-arch target was missing --- debian/rules | 37 +++++++++++-------------------------- 1 file changed, 11 insertions(+), 26 deletions(-) diff --git a/debian/rules b/debian/rules index 6298d53..35119cb 100755 --- a/debian/rules +++ b/debian/rules @@ -10,35 +10,20 @@ build-stamp: touch build-stamp clean: - dh_testdir + dh clean rm -rf simpbuild - dh_clean -install: build - dh_testdir - dh_testroot - dh_prep - dh_installdirs -A - dh_install - dh_installdocs -A - dh_installman - dh_installchangelogs -A - dh_compress -A - dh_fixperms -A - - -binary-indep: build install - dh_testdir - dh_testroot - dh_installdeb -A - dh_gencontrol - dh_md5sums - dh_builddeb +install: build install-stamp +install-stamp: + dh install + touch $@ +binary-indep: install + dh $@ -# no arch-specific stuff, but Lintian complains if this is missing -binary-arch: +binary-arch: install + dh $@ -binary: binary-indep +binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary install +.PHONY: build clean binary-indep binary-arch binary install -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/scala-2.10.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

