r4208 - packages/trunk/vegastrike/debian

Gonéri Le Bouder goneri-guest at alioth.debian.org
Sun Sep 16 20:07:05 UTC 2007


Author: goneri-guest
Date: 2007-09-16 20:07:05 +0000 (Sun, 16 Sep 2007)
New Revision: 4208

Modified:
   packages/trunk/vegastrike/debian/changelog
   packages/trunk/vegastrike/debian/rules
Log:
rewrite the clean target with some calls to find (Closes: #442758)


Modified: packages/trunk/vegastrike/debian/changelog
===================================================================
--- packages/trunk/vegastrike/debian/changelog	2007-09-16 17:02:32 UTC (rev 4207)
+++ packages/trunk/vegastrike/debian/changelog	2007-09-16 20:07:05 UTC (rev 4208)
@@ -7,8 +7,11 @@
     + Modified patches to use quilt.
   * Documentation from vegastrike-data won't be included.
 
- -- Andres Mejia <mcitadel at gmail.com>  Fri, 10 Aug 2007 12:37:00 -0400
+  [ Gonéri Le Bouder ]
+  * rewrite the clean target with some calls to find (Closes: #442758) 
 
+ -- Gonéri Le Bouder <goneri at rulezlan.org>  Sun, 16 Sep 2007 22:22:38 +0200
+
 vegastrike (0.4.3.debian-2) unstable; urgency=low
 
   [ Gonéri Le Bouder ]

Modified: packages/trunk/vegastrike/debian/rules
===================================================================
--- packages/trunk/vegastrike/debian/rules	2007-09-16 17:02:32 UTC (rev 4207)
+++ packages/trunk/vegastrike/debian/rules	2007-09-16 20:07:05 UTC (rev 4208)
@@ -66,48 +66,12 @@
 	-$(MAKE) distclean
 # These files are generated by autotools or during build. They are removed
 # to get the cleanest diff.gz possible.
-	rm -f install-sh
-	rm -f Makefile.in
-	rm -f config.guess
-	rm -f common/Makefile.in
-	rm -f common/Makefile
-	rm -f config.sub
-	rm -f configure
-	rm -f objconv/Makefile.in
-	rm -f objconv/Makefile
-	rm -rf objconv/.deps
-	rm -f objconv/mesher/Makefile.in
-	rm -f objconv/mesher/Makefile
-	rm -rf objconv/mesher/.deps
-	rm -f src/Makefile.in
-	rm -f src/common/Makefile.in
-	rm -f src/aldrv/Makefile.in
-	rm -f src/gldrv/Makefile.in
-	rm -f src/gfx/Makefile.in
-	rm -f src/gfx/nav/Makefile.in
-	rm -f src/networking/Makefile.in
-	rm -f src/networking/lowlevel/Makefile.in
-	rm -f src/python/Makefile.in
-	rm -f src/gui/Makefile.in
-	rm -f src/cmd/Makefile.in
-	rm -f src/cmd/collide/csgeom/Makefile.in
-	rm -f src/cmd/collide/Makefile.in
-	rm -f src/cmd/script/Makefile.in
-	rm -f src/cmd/script/c_alike/Makefile.in
-	rm -f src/cmd/ai/Makefile.in
-	rm -f mission/Makefile.in
-	rm -f mission/Makefile
-	rm -rf mission/.deps
-	rm -f tools/Makefile.in
-	rm -f tools/Makefile
-	rm -rf tools/.deps
-	rm -f aclocal.m4
-	rm -f config.h.in
-	rm -f depcomp
-	rm -f config.log
-	rm -f launcher/Makefile.in
-	rm -f launcher/Makefile
-	rm -rf launcher/.deps
+	find -name '*.in' ! -name 'configure.in' -exec rm -rf {} \;
+	find -name 'Makefile' -exec rm -rf {} \;
+	find -name '*.o' -exec rm -rf {} \;
+	find -name '.deps' -exec rm -rf {} \;
+	rm -f install-sh config.guess config.sub configure aclocal.m4 depcomp \
+	  config.log vssetup/src/bin/setup
 
 	rm -f *-stamp
 	QUILT_PATCHES=debian/patches quilt pop -a -R || test $$? = 2




More information about the Pkg-games-commits mailing list