r5091 - packages/trunk/warzone2100/debian

Paul Wise pabs at alioth.debian.org
Sat Dec 29 03:37:59 UTC 2007


Author: pabs
Date: 2007-12-29 03:37:58 +0000 (Sat, 29 Dec 2007)
New Revision: 5091

Modified:
   packages/trunk/warzone2100/debian/changelog
   packages/trunk/warzone2100/debian/rules
Log:
* Don't ignore errors from make clean

Modified: packages/trunk/warzone2100/debian/changelog
===================================================================
--- packages/trunk/warzone2100/debian/changelog	2007-12-29 02:42:43 UTC (rev 5090)
+++ packages/trunk/warzone2100/debian/changelog	2007-12-29 03:37:58 UTC (rev 5091)
@@ -5,6 +5,7 @@
   * Remove homepages from package descriptions
   * Simplify build targets a little
   * Use the upstream SVG icon and FreeDesktop menu file
+  * Don't ignore errors from make clean
 
  -- Paul Wise <pabs at debian.org>  Sat, 29 Dec 2007 10:32:03 +0930
 

Modified: packages/trunk/warzone2100/debian/rules
===================================================================
--- packages/trunk/warzone2100/debian/rules	2007-12-29 02:42:43 UTC (rev 5090)
+++ packages/trunk/warzone2100/debian/rules	2007-12-29 03:37:58 UTC (rev 5091)
@@ -90,8 +90,8 @@
 	dh_testroot
 	rm -f build-stamp
 	rm -f build-indep-stamp
-	-$(MAKE) clean
-	-$(MAKE) distclean
+	[ ! -f Makefile ] || $(MAKE) clean
+	[ ! -f Makefile ] || $(MAKE) distclean
 	rm -rf autom4te.cache
 	dh_clean \
 	    configure \




More information about the Pkg-games-commits mailing list