diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/pluma-bugreport.sh.in | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/data/pluma-bugreport.sh.in b/data/pluma-bugreport.sh.in index 5aa2178e..4d97a6ae 100644 --- a/data/pluma-bugreport.sh.in +++ b/data/pluma-bugreport.sh.in @@ -1,10 +1,7 @@ #!/bin/sh -ENABLE_PYTHON=@enable_python@ - PKG_CONFIG_MODULES="glib-2.0 gtk+-2.0 gtksourceview-2.0 \ - pygobject-2.0 pygtk-2.0 \ - pygtksourceview-2.0 enchant iso-codes" + enchant iso-codes" echo_padded () { @@ -54,20 +51,3 @@ else fi echo -echo "Python module versions:" -if test "$ENABLE_PYTHON" = "yes" -then - echo_padded "python" - python -V 2>&1 | cut -c8- - - echo_padded "pygtk" - python -c "import gtk, sys; \ - sys.stdout.write('%d.%d.%d ' % gtk.pygtk_version); \ - sys.stdout.write('(GTK+ %d.%d.%d)' % gtk.gtk_version)" \ - 2>/dev/null - echo -else - echo " Python support was not enabled at compile time." -fi -echo - |