Skip to content
Snippets Groups Projects
Commit 28b5499e authored by Joey Hess's avatar Joey Hess
Browse files

Gnome only works on i386 and amd64, so default to xfce on other arches....

Gnome only works on i386 and amd64, so default to xfce on other arches. Closes: #765839 Thanks, Adam Borowski for testing.
parent 1fa91e1d
No related branches found
Tags 3.29 debian/3.29
No related merge requests found
tasksel (3.29) unstable; urgency=high
* Gnome only works on i386 and amd64, so default to xfce on other arches.
Closes: #765839 Thanks, Adam Borowski for testing.
-- Joey Hess <joeyh@debian.org> Tue, 21 Oct 2014 11:21:06 -0400
tasksel (3.28) unstable; urgency=medium
* Display cinnamon and lxde tasks. However, this increases the total
......
......@@ -6,8 +6,11 @@
default_desktop_for_arch() {
case "$1" in
kfreebsd-*) echo xfce ;;
hurd-*) echo xfce ;;
*) echo gnome ;;
i386) echo gnome ;;
amd64) echo gnome ;;
# gnome only works on linux,
# and only on arches with 3d hardware
# or llvmpipe. See #765839.
*) echo xfce ;;
esac
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment