[Python-modules-commits] r17054 - in packages/pyzmq/trunk/debian (changelog rules)

bzed at users.alioth.debian.org bzed at users.alioth.debian.org
Thu May 19 17:42:57 UTC 2011


    Date: Thursday, May 19, 2011 @ 17:42:55
  Author: bzed
Revision: 17054

Only clean the zmq directory if the directory exists. 

Modified:
  packages/pyzmq/trunk/debian/changelog
  packages/pyzmq/trunk/debian/rules

Modified: packages/pyzmq/trunk/debian/changelog
===================================================================
--- packages/pyzmq/trunk/debian/changelog	2011-05-19 17:40:49 UTC (rev 17053)
+++ packages/pyzmq/trunk/debian/changelog	2011-05-19 17:42:55 UTC (rev 17054)
@@ -3,8 +3,9 @@
   * New upstream version.
   * Build-depend on zeromq 2.1.7.
   * Bump Standards-Version to 3.9.2, no changes needed.
+  * Only clean the zmq directory if the directory exists. 
 
- -- Bernd Zeimetz <bzed at debian.org>  Thu, 19 May 2011 19:38:28 +0200
+ -- Bernd Zeimetz <bzed at debian.org>  Thu, 19 May 2011 19:42:31 +0200
 
 pyzmq (2.0.10.1-2) unstable; urgency=low
 

Modified: packages/pyzmq/trunk/debian/rules
===================================================================
--- packages/pyzmq/trunk/debian/rules	2011-05-19 17:40:49 UTC (rev 17053)
+++ packages/pyzmq/trunk/debian/rules	2011-05-19 17:42:55 UTC (rev 17054)
@@ -4,7 +4,7 @@
 
 override_dh_auto_clean:
 	-dh_auto_clean
-	find zmq -name '*.c' -delete
+	if [ -d zmq ]; then find zmq -name '*.c' -delete; fi
 
 override_dh_install:
 	# Install everything excluding the *_d.so debug extensions to python-zmq




More information about the Python-modules-commits mailing list