This is an automated email from the git hooks/post-receive script. xhaakon-guest pushed a commit to branch master in repository eclipse-cdt.
commit 3dea0d36a4a8b9139d57d4cc5420aac8e1b1be05 Author: Jakub Adam <[email protected]> Date: Tue Aug 27 18:54:04 2013 +0200 Fix FTBFS with make 3.82 debian/rules:33: *** mixed implicit and normal rules. Stop. --- debian/changelog | 6 ++++++ debian/rules | 7 +++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index d7359ba..7e1ac35 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +eclipse-cdt (8.2.0-2) UNRELEASED; urgency=low + + * Fix FTBFS with make 3.82 (Closes: #720832). + + -- Jakub Adam <[email protected]> Tue, 27 Aug 2013 18:52:15 +0200 + eclipse-cdt (8.2.0-1) unstable; urgency=low * New upstream release. diff --git a/debian/rules b/debian/rules index 72f86ca..66e5a90 100755 --- a/debian/rules +++ b/debian/rules @@ -28,9 +28,12 @@ endif BUILD_DIR:=debian/.eclipse-build -.PHONY: build +%: + dh $@ --with eclipse-helper -build %: +# There is 'build' directory in the source tree colliding with 'build' target +.PHONY: build +build: dh $@ --with eclipse-helper override_dh_auto_clean: -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/eclipse-cdt.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

