This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libgraph-perl.

commit 8814c926c14fb0586773e6e9c203612b773253aa
Author: gregor herrmann <gre...@debian.org>
Date:   Sat Nov 9 15:32:45 2013 +0100

    Imported Debian patch 1:0.96-1.1
---
 debian/changelog | 10 ++++++++++
 debian/rules     |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index fde94ec..a89ab3f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+libgraph-perl (1:0.96-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix "FTBFS: make: *** [clean] Error 1":
+    invert logic of test for Makefile existence, so that it returns true in
+    debian/rules' clean target.
+    (Closes: #724080)
+
+ -- gregor herrmann <gre...@debian.org>  Sat, 09 Nov 2013 15:32:45 +0100
+
 libgraph-perl (1:0.96-1) unstable; urgency=low
 
   * New upstream release (Closes: #634997).
diff --git a/debian/rules b/debian/rules
index 496da64..3ba45fa 100755
--- a/debian/rules
+++ b/debian/rules
@@ -22,7 +22,7 @@ clean:
        dh_testdir
        dh_testroot
        rm -f build-stamp
-       [ -f Makefile ] && $(MAKE) realclean
+       [ ! -f Makefile ] || $(MAKE) realclean
        dh_clean
 
 install: 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libgraph-perl.git

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to