r1460 - packages/trunk/glest/debian

Eddy Petrisor eddyp-guest at costa.debian.org
Thu Aug 31 21:38:33 UTC 2006


Author: eddyp-guest
Date: 2006-08-31 21:38:32 +0000 (Thu, 31 Aug 2006)
New Revision: 1460

Modified:
   packages/trunk/glest/debian/changelog
   packages/trunk/glest/debian/rules
Log:
do not ignore errors during build; final whitespace deletions

Modified: packages/trunk/glest/debian/changelog
===================================================================
--- packages/trunk/glest/debian/changelog	2006-08-31 21:21:12 UTC (rev 1459)
+++ packages/trunk/glest/debian/changelog	2006-08-31 21:38:32 UTC (rev 1460)
@@ -11,6 +11,7 @@
   * added a clean rule to the upstream Jamfile (not as a patch since it
     brings in unnecessary complications and the rule should be always there)
   * modified the way the editor building is disabled
+  * do not ignore errors during build and clean
 
- -- Eddy Petrișor <eddy.petrisor at gmail.com>  Fri,  1 Sep 2006 00:12:02 +0300
+ -- Eddy Petrișor <eddy.petrisor at gmail.com>  Fri,  1 Sep 2006 00:34:46 +0300
 

Modified: packages/trunk/glest/debian/rules
===================================================================
--- packages/trunk/glest/debian/rules	2006-08-31 21:21:12 UTC (rev 1459)
+++ packages/trunk/glest/debian/rules	2006-08-31 21:38:32 UTC (rev 1460)
@@ -34,11 +34,11 @@
 
 build: build-stamp
 
-build-stamp: configure-stamp 
+build-stamp: configure-stamp
 	dh_testdir
 
 	# Add here commands to compile the package.
-	-cd mk/linux && jam
+	cd mk/linux && jam
 	#docbook-to-man debian/glest.sgml > glest.1
 
 	touch build-stamp
@@ -50,14 +50,14 @@
 	rm -f build-stamp configure-stamp
 
 	# Add here commands to clean up after the build process.
-	-$(MAKE) clean
+	cd mk/linux && jam clean
 
-	dh_clean 
+	dh_clean
 
 install: build
 	dh_testdir
 	dh_testroot
-	dh_clean -k 
+	dh_clean -k
 	dh_installdirs
 	install --mode=755 $(CURDIR)/debian/glest.sh $(CURDIR)/debian/glest/usr/games/glest
 
@@ -72,7 +72,7 @@
 binary-arch: build install
 	dh_testdir
 	dh_testroot
-	dh_installchangelogs 
+	dh_installchangelogs
 	dh_installdocs
 	dh_installexamples
 	dh_install




More information about the Pkg-games-commits mailing list