r12225 - packages/trunk/late/debian

Evgeni Golov evgeni at alioth.debian.org
Sat May 7 14:19:20 UTC 2011


Author: evgeni
Date: 2011-05-07 14:19:15 +0000 (Sat, 07 May 2011)
New Revision: 12225

Modified:
   packages/trunk/late/debian/changelog
   packages/trunk/late/debian/postinst
   packages/trunk/late/debian/postrm
Log:
Drop /bin/ from post{inst,rm}, thanks lintian.


Modified: packages/trunk/late/debian/changelog
===================================================================
--- packages/trunk/late/debian/changelog	2011-05-07 14:09:46 UTC (rev 12224)
+++ packages/trunk/late/debian/changelog	2011-05-07 14:19:15 UTC (rev 12225)
@@ -3,8 +3,9 @@
   * Team upload.
   * Include stddef.h in ball.h to define NULL.
     Closes: #624937
+  * Drop /bin/ from post{inst,rm}, thanks lintian.
 
- -- Evgeni Golov <evgeni at debian.org>  Sat, 07 May 2011 14:17:36 +0200
+ -- Evgeni Golov <evgeni at debian.org>  Sat, 07 May 2011 16:18:17 +0200
 
 late (0.1.0-11) unstable; urgency=low
 

Modified: packages/trunk/late/debian/postinst
===================================================================
--- packages/trunk/late/debian/postinst	2011-05-07 14:09:46 UTC (rev 12224)
+++ packages/trunk/late/debian/postinst	2011-05-07 14:19:15 UTC (rev 12225)
@@ -15,19 +15,19 @@
 # First install the score file might be missing.
 if [ ! -e $scorefile ]
 then
-	/bin/touch $scorefile
+	touch $scorefile
 fi
 
 
 # Make sure the score file has the correct permissions
-/bin/chmod 0664 $scorefile
-/bin/chown root:games $scorefile
+chmod 0664 $scorefile
+chown root:games $scorefile
 
 
 # Now make the binary setgid(games).
-/bin/chmod 755 $binary
-/bin/chown root:games $binary
-/bin/chmod g+s $binary
+chmod 755 $binary
+chown root:games $binary
+chmod g+s $binary
 
 #DEBHELPER#
 

Modified: packages/trunk/late/debian/postrm
===================================================================
--- packages/trunk/late/debian/postrm	2011-05-07 14:09:46 UTC (rev 12224)
+++ packages/trunk/late/debian/postrm	2011-05-07 14:19:15 UTC (rev 12225)
@@ -8,7 +8,7 @@
 
 case "$1" in
 purge)
-        /bin/rm -f $scorefile
+        rm -f $scorefile
 	;;
 *)
         ;;




More information about the Pkg-games-commits mailing list