r7937 - packages/trunk/warzone2100/debian

Paul Wise pabs at alioth.debian.org
Fri Aug 15 18:29:51 UTC 2008


Author: pabs
Date: 2008-08-15 18:29:50 +0000 (Fri, 15 Aug 2008)
New Revision: 7937

Modified:
   packages/trunk/warzone2100/debian/changelog
   packages/trunk/warzone2100/debian/rules
Log:
Cause the build to fail properly when there is an error (Closes: #494700)

Modified: packages/trunk/warzone2100/debian/changelog
===================================================================
--- packages/trunk/warzone2100/debian/changelog	2008-08-15 00:21:31 UTC (rev 7936)
+++ packages/trunk/warzone2100/debian/changelog	2008-08-15 18:29:50 UTC (rev 7937)
@@ -1,3 +1,9 @@
+warzone2100 (2.1.0~1.beta4-2) unstable; urgency=low
+
+  * Cause the build to fail properly when there is an error (Closes: #494700)
+
+ -- Paul Wise <pabs at debian.org>  Fri, 15 Aug 2008 15:13:54 -0300
+
 warzone2100 (2.1.0~1.beta4-1) unstable; urgency=low
 
   * New upstream beta release (Closes: #491657)

Modified: packages/trunk/warzone2100/debian/rules
===================================================================
--- packages/trunk/warzone2100/debian/rules	2008-08-15 00:21:31 UTC (rev 7936)
+++ packages/trunk/warzone2100/debian/rules	2008-08-15 18:29:50 UTC (rev 7937)
@@ -56,7 +56,7 @@
 build-stamp: config.status
 	dh_testdir
 	for d in $(SUBDIRS) ; do \
-		$(MAKE) -C $$d ; \
+		$(MAKE) -C $$d || exit 1 ; \
 	done 
 	touch $@
 # -------------------------------------
@@ -111,7 +111,7 @@
 	dh_testroot -a
 	dh_clean -k -a
 	for d in $(SUBDIRS) ; do \
-		$(MAKE) -C $$d install DESTDIR=$(CURDIR)/debian/tmp ; \
+		$(MAKE) -C $$d install DESTDIR=$(CURDIR)/debian/tmp || exit 1 ; \
 	done
 	rm -rf debian/tmp/usr/share/doc/warzone2100
 # -------------------------------------




More information about the Pkg-games-commits mailing list