Hi,
version of compiz script (/usr/bin/compiz) in JDS nevada_110 and vermillion_110
builds fails to launch.
This is because of a missing "then" in the script.
Solution :
- Fix compiz script (diff attached)
- Generate new compiz-integration-tarball (bumped to 6.2)
For Trunk
- Update SUNWcompiz.spec to reference new integration tarball
- Update gnome-session.spec to reference new integration tarball
For opensolaris-2009-06 branch
- Update SUNWcompiz.spec to reference new integration tarball
svn diff -r18 compiz
Index: compiz
===================================================================
--- compiz (revision 18)
+++ compiz (working copy)
@@ -18,7 +18,7 @@
DECORATOR="/usr/bin/gtk-window-decorator"
DECORATOR_OPTIONS="--replace"
-if [ "x$COMPIZ_VERBOSE" != "x" ];
+if [ "x$COMPIZ_VERBOSE" != "x" ]; then
VERBOSE="yes"
else
VERBOSE="no"