xorg: Changes to 'ubuntu'
debian/apport/source_xorg.py | 6 ++++++
1 file changed, 6 insertions(+)
New commits:
commit 525d04d5b8d15d9fb2a17a50df69268b5472a971
Author: Bryce Harrington <bryce@bryceharrington.org>
Date: Thu Jan 15 13:39:50 2009 -0800
Add glxinfo to apport reports
diff --git a/debian/apport/source_xorg.py b/debian/apport/source_xorg.py
index 8f0977d..c0136d3 100644
--- a/debian/apport/source_xorg.py
+++ b/debian/apport/source_xorg.py
@@ -61,6 +61,12 @@ def add_info(report):
pass
try:
+ script = subprocess.Popen(['glxinfo'], stdout=subprocess.PIPE)
+ report['glxinfo'] = script.communicate()[0]
+ except OSError:
+ pass
+
+ try:
script = subprocess.Popen(['setxkbmap', '-print'], stdout=subprocess.PIPE)
report['setxkbmap'] = script.communicate()[0]
except OSError:
Reply to: