File wrapper-script of Package java-1_6_0-sun
1
#!/bin/bash
2
# This wrapper script solves the problem that graphical java programs won't work with the newest X server
3
export LIBXCB_ALLOW_SLOPPY_LOCK=1
4
exec -a `readlink -f $0` `readlink -f $0`.bin ${1+"$@"}
5