r1437 - in packages/branches/nexuiz/nexuiz-2.0/debian: . scripts

Eddy Petrişor eddy.petrisor at gmail.com
Sat Aug 26 21:58:22 UTC 2006


On 26/08/06, Bruno Fuddl-guestquot; Fuddl" Kleinert
<fuddl-guest at costa.debian.org> wrote:
> Author: fuddl-guest
> Date: 2006-08-26 16:32:55 +0000 (Sat, 26 Aug 2006)
> New Revision: 1437
>
> Modified:
>    packages/branches/nexuiz/nexuiz-2.0/debian/changelog
>    packages/branches/nexuiz/nexuiz-2.0/debian/scripts/nexuiz
> Log:
> removed a bash-specific construct from the wrapper script
>
> Modified: packages/branches/nexuiz/nexuiz-2.0/debian/changelog
> ===================================================================
> --- packages/branches/nexuiz/nexuiz-2.0/debian/changelog        2006-08-25 23:20:51 UTC (rev 1436)
> +++ packages/branches/nexuiz/nexuiz-2.0/debian/changelog        2006-08-26 16:32:55 UTC (rev 1437)
> @@ -3,8 +3,9 @@
>    [ Bruno "Fuddl" Kleinert ]
>    * Include a patch to fix a crash after taking a screenshot at non-standard
>      resolutions. Thanks to divVerent for the patch!
> +  * Fixed a bash specific construct in the wrapper script
>
> - -- Bruno "Fuddl" Kleinert <fuddl at gmx.de>  Sat, 05 Aug 2006 16:47:18 +0200
> + -- Bruno "Fuddl" Kleinert <fuddl at gmx.de>  Sat, 26 Aug 2006 18:29:17 +0200
>
>  nexuiz (2.0-1) unstable; urgency=low
>
>
> Modified: packages/branches/nexuiz/nexuiz-2.0/debian/scripts/nexuiz
> ===================================================================
> --- packages/branches/nexuiz/nexuiz-2.0/debian/scripts/nexuiz   2006-08-25 23:20:51 UTC (rev 1436)
> +++ packages/branches/nexuiz/nexuiz-2.0/debian/scripts/nexuiz   2006-08-26 16:32:55 UTC (rev 1437)
> @@ -24,7 +24,7 @@
>
>  # Ready to rumble!
>  cd /usr/lib/games/nexuiz
> -if [ ${QUIET} == 1 ]; then
> +if [ ${QUIET} = 1 ]; then

why not :
if [ ${QUIET} -eq 1 ]; then

?

>         ./nexuiz-sdl $* >/dev/null 2>&1
>  else
>         ./nexuiz-sdl $*
>
>
> _______________________________________________
> Pkg-games-commits mailing list
> Pkg-games-commits at lists.alioth.debian.org
> http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits
>


-- 
Regards,
EddyP
=============================================
"Imagination is more important than knowledge" A.Einstein



More information about the Pkg-games-devel mailing list