[med-svn] r2107 - trunk/packages/emboss-explorer/trunk/debian

plessy at alioth.debian.org plessy at alioth.debian.org
Sun Jun 29 15:02:08 UTC 2008


Author: plessy
Date: 2008-06-29 15:02:07 +0000 (Sun, 29 Jun 2008)
New Revision: 2107

Modified:
   trunk/packages/emboss-explorer/trunk/debian/changelog
   trunk/packages/emboss-explorer/trunk/debian/rules
Log:
Fixes double-building issues.

Running debuild twice in a row would not work without this modification.


Modified: trunk/packages/emboss-explorer/trunk/debian/changelog
===================================================================
--- trunk/packages/emboss-explorer/trunk/debian/changelog	2008-06-29 14:36:31 UTC (rev 2106)
+++ trunk/packages/emboss-explorer/trunk/debian/changelog	2008-06-29 15:02:07 UTC (rev 2107)
@@ -11,7 +11,9 @@
   * debian/rules:
     - refreshed using dh-make-perl version 0.45;
     - tests disable because of upstream bug 1994385;
-    - sets the owner of the emboss output directory as `www-data'.
+    - sets the owner of the emboss output directory as `www-data';
+    - touches the makefile to avoid timestamp artefacts due to the patching of
+      Makefile.PL (Thanks to Damyan and Gregor for the hint!).
   * Package made compatible with FHS by not using /var/www.
     - HTML files moved to `/usr/emboss-explorer/html'.
     - Cascade stylesheets moved to `/etc/emboss-explorer/style'

Modified: trunk/packages/emboss-explorer/trunk/debian/rules
===================================================================
--- trunk/packages/emboss-explorer/trunk/debian/rules	2008-06-29 14:36:31 UTC (rev 2106)
+++ trunk/packages/emboss-explorer/trunk/debian/rules	2008-06-29 15:02:07 UTC (rev 2107)
@@ -32,7 +32,7 @@
 	dh_testroot
 	dh_clean build-stamp install-stamp
 	# Add commands to clean up after the build process here
-	[ ! -f Makefile ] || $(MAKE) realclean
+	[ ! -f Makefile ] || ( touch Makefile && $(MAKE) realclean )
 
 install: install-stamp
 install-stamp: build-stamp




More information about the debian-med-commit mailing list