r33705 - in /trunk/dh-make-perl: debian/changelog lib/DhMakePerl.pm

roam-guest at users.alioth.debian.org roam-guest at users.alioth.debian.org
Wed Apr 22 14:38:00 UTC 2009


Author: roam-guest
Date: Wed Apr 22 14:37:51 2009
New Revision: 33705

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=33705
Log:
Unbreak the "nocheck" test in debian/rules - quote the $ in $(filter
and $(DEB_BUILD_OPTIONS), so that Perl doesn't put a group list
in "$(" :)

Modified:
    trunk/dh-make-perl/debian/changelog
    trunk/dh-make-perl/lib/DhMakePerl.pm

Modified: trunk/dh-make-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/debian/changelog?rev=33705&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/changelog (original)
+++ trunk/dh-make-perl/debian/changelog Wed Apr 22 14:37:51 2009
@@ -1,3 +1,11 @@
+dh-make-perl (0.55) UNRELEASED; urgency=low
+
+  * Tweak the "nocheck" test in debian/rules:
+    - unbreak it: do not output the list of the group ID's of
+      the developer's local account :)
+
+ -- Peter Pentchev <roam at ringlet.net>  Wed, 22 Apr 2009 17:23:06 +0300
+
 dh-make-perl (0.54) unstable; urgency=low
 
   [ gregor herrmann ]

Modified: trunk/dh-make-perl/lib/DhMakePerl.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/DhMakePerl.pm?rev=33705&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/DhMakePerl.pm (original)
+++ trunk/dh-make-perl/lib/DhMakePerl.pm Wed Apr 22 14:37:51 2009
@@ -14,11 +14,11 @@
 
 =head1 VERSION
 
-Version 0.54
+Version 0.55
 
 =cut
 
-our $VERSION = '0.54';
+our $VERSION = '0.55';
 
 =head1 SYNOPSIS
 
@@ -1151,7 +1151,7 @@
             = ( $module_build eq 'Module-Build' )
             ? '$(PERL) Build test'
             : '$(MAKE) test';
-        $test_line = "+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))\n"
+        $test_line = "ifeq (,\$(filter nocheck,\$(DEB_BUILD_OPTIONS)))\n"
                    . "\t$test_line\n"
                    . "endif";
 




More information about the Pkg-perl-cvs-commits mailing list