[fusion-commits] Wrapper script to start Compiz: Changes to 'master' (849b87a282393416005d3b01b6dde7033a461321)

kristian at server.opencompositing.org kristian at server.opencompositing.org
Wed May 21 17:47:34 CEST 2008


New commits:
commit 849b87a282393416005d3b01b6dde7033a461321
Author: Kristian Lyngstol <kristian at yoda.lyngstol.net>
Date:   Wed May 21 17:46:26 2008 +0200

    Fix POSIX-correctness. Closes bug 708


 compiz-manager |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Modified: fusion/misc/compiz-manager/compiz-manager
===================================================================
--- fusion/misc/compiz-manager/compiz-manager
+++ fusion/misc/compiz-manager/compiz-manager
@@ -150,7 +150,7 @@ check_fbconfig()
 check_tfp()
 {
 	verbose "Checking for texture_from_pixmap: "
-	if [ $($GLXINFO 2>/dev/null | grep GLX_EXT_texture_from_pixmap -c) -gt 2 ] ; then
+	if [ $($GLXINFO 2>/dev/null | grep -c GLX_EXT_texture_from_pixmap) -gt 2 ] ; then
 		verbose "present. \n"
 		return 0;
 	else


More information about the commits mailing list