tag 429155 + patch
thanks
Hi Oohara,
please find attached a patch to fix this bug. An updated package
including this patch can be found at
http://www.joachim-reichel.de/debian/pool/main/z/zblast/zblast_1.3-2.3.dsc
I also fixed a lintian warning about ignoring the error code of "$(MAKE)
clean". Please let me know if you have objections to this NMU.
Regards,
Joachim
diff -u zblast-1.3/debian/changelog zblast-1.3/debian/changelog
--- zblast-1.3/debian/changelog
+++ zblast-1.3/debian/changelog
@@ -1,3 +1,11 @@
+zblast (1.3-2.3) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Create /var/games/zblast if necessary (Closes: #429155).
+ * Do not ignore error code of "$(MAKE) clean".
+
+ -- Joachim Reichel <[EMAIL PROTECTED]> Tue, 7 Aug 2007 17:51:05 +0200
+
zblast (1.3-2.2) unstable; urgency=high
* Non-maintainer upload during BSP.
diff -u zblast-1.3/debian/rules zblast-1.3/debian/rules
--- zblast-1.3/debian/rules
+++ zblast-1.3/debian/rules
@@ -32,7 +32,7 @@
dh_testroot
rm -f build-stamp
- -$(MAKE) clean
+ $(MAKE) clean
dh_clean
diff -u zblast-1.3/debian/zblast-data.postinst
zblast-1.3/debian/zblast-data.postinst
--- zblast-1.3/debian/zblast-data.postinst
+++ zblast-1.3/debian/zblast-data.postinst
@@ -19,6 +19,10 @@
# create the score file if necessary
if test "$1" = configure
then
+ if test ! -d /var/games/zblast
+ then
+ mkdir -p /var/games/zblast
+ fi
if test ! -e /var/games/zblast/zblast.scores
then
touch /var/games/zblast/zblast.scores