r19205 - in /trunk/libjavascript-perl/debian: changelog rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Apr 27 01:22:32 UTC 2008


Author: gregoa
Date: Sun Apr 27 01:22:31 2008
New Revision: 19205

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=19205
Log:
debian/rules: touch Makefile before $(MAKE) realclean to avoid Makefile
re-building (and breaking building twice in a row); thanks to Mike
Hommey for the bug report (closes: #478060).

Modified:
    trunk/libjavascript-perl/debian/changelog
    trunk/libjavascript-perl/debian/rules

Modified: trunk/libjavascript-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libjavascript-perl/debian/changelog?rev=19205&op=diff
==============================================================================
--- trunk/libjavascript-perl/debian/changelog (original)
+++ trunk/libjavascript-perl/debian/changelog Sun Apr 27 01:22:31 2008
@@ -1,3 +1,11 @@
+libjavascript-perl (1.06-2) UNRELEASED; urgency=low
+
+  * debian/rules: touch Makefile before $(MAKE) realclean to avoid Makefile
+    re-building (and breaking building twice in a row); thanks to Mike
+    Hommey for the bug report (closes: #478060).
+
+ -- gregor herrmann <gregoa at debian.org>  Sun, 27 Apr 2008 03:19:47 +0200
+
 libjavascript-perl (1.06-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/libjavascript-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libjavascript-perl/debian/rules?rev=19205&op=diff
==============================================================================
--- trunk/libjavascript-perl/debian/rules (original)
+++ trunk/libjavascript-perl/debian/rules Sun Apr 27 01:22:31 2008
@@ -37,7 +37,7 @@
 clean: unpatch
 	dh_testdir
 	dh_testroot
-	[ ! -f Makefile ] || $(MAKE) realclean
+	[ ! -f Makefile ] || ( touch Makefile && $(MAKE) realclean )
 	$(RM) JavaScript_Env.h
 	# this is cruft from Inline::C in t/24-c-level-interrupt-handler.t
 	$(RM) -r _Inline/




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