aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mail
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2012-09-23 17:46:47 -0700
committerGlenn Morris <[email protected]>2012-09-23 17:46:47 -0700
commitbcc0adbf3cf3976daf5686a73a1bbd8562027a2a (patch)
treedfb45c77c08687970f1abb6c9a688091b77550df /lisp/mail
parentafea8a8abd2f9ffa46bc0434db70a571318383cf (diff)
* lisp/mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
Diffstat (limited to 'lisp/mail')
-rw-r--r--lisp/mail/emacsbug.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el
index ca9bc6b867..ad2167bd6f 100644
--- a/lisp/mail/emacsbug.el
+++ b/lisp/mail/emacsbug.el
@@ -248,6 +248,13 @@ usually do not have translators for other languages.\n\n")))
"', version "
(mapconcat 'number-to-string (x-server-version) ".") "\n")
(error t)))
+ (let ((lsb (with-temp-buffer
+ (if (eq 0 (ignore-errors
+ (call-process "lsb_release" nil '(t nil)
+ nil "-d")))
+ (buffer-string)))))
+ (if (stringp lsb)
+ (insert "LSB Release " lsb "\n")))
(when (and system-configuration-options
(not (equal system-configuration-options "")))
(insert "Configured using:\n `configure "