[pkg-kde-commits] rev 2742 - trunk/packages/qt4-x11/debian

Brian Nelson pyro at costa.debian.org
Wed Jan 4 20:32:57 UTC 2006


Author: pyro
Date: 2006-01-04 20:32:56 +0000 (Wed, 04 Jan 2006)
New Revision: 2742

Modified:
   trunk/packages/qt4-x11/debian/rules
Log:
Don't clean Makefiles quite so aggressively; otherwise the build gets
broke.


Modified: trunk/packages/qt4-x11/debian/rules
===================================================================
--- trunk/packages/qt4-x11/debian/rules	2006-01-04 06:18:41 UTC (rev 2741)
+++ trunk/packages/qt4-x11/debian/rules	2006-01-04 20:32:56 UTC (rev 2742)
@@ -44,7 +44,8 @@
 
 clean::
 	# Extra stuff missed by confclean/distclean
-	rm -f bin/qmake \
+	rm -f Makefile \
+	      bin/qmake \
 	      mkspecs/default \
 	      src/corelib/global/arch \
 	      examples/tools/plugandpaint/plugins/*.so \
@@ -56,7 +57,10 @@
 	rm -rf lib/ plugins/
 
 	find include/ -type l -print0 | xargs -0r rm -f
-	find . -mindepth 2 -name 'Makefile*' -print0 | xargs -0r rm -f
+	find . -mindepth 2 -name Makefile -print0 \
+	                -o -name Makefile.Debug -print0 \
+	                -o -name Makefile.Release -print0 \
+	                | xargs -0r rm -f
 
 # Hack to fix dpatch-edit-patch
 unpatch: deapply-dpatches




More information about the pkg-kde-commits mailing list