https://bugzilla.novell.com/show_bug.cgi?id=254439 Summary: /usr/bin/gnome does obsolete things Product: openSUSE 10.3 Version: Alpha 1plus Platform: All OS/Version: All Status: NEW Severity: Normal Priority: P5 - None Component: GNOME AssignedTo: bnc-team-gnome@forge.provo.novell.com ReportedBy: andreas.hanke@gmx-topmail.de QAContact: qa@suse.de There are a few obsolete things in /usr/bin/gnome (package gnome-session) that could be removed or updated. # We use a cascaded KDE configuration while in GNOME, # to preconfigure some utilities better suited for GNOME export KDEDIRS=/usr/share/dist/kde-preconf => This was only used for suseplugger which is obsolete in GNOME, see bug 235438 # Manage GTK1 themes with gnome-theme-manager export GTK_RC_FILES=/etc/opt/gnome/gtk/gtkrc:$HOME/.gtkrc-1.2-gnome2 => /etc/opt/gnome is no more # If gconfd 1 is still running, shut it down now if [ -e /opt/gnome/bin/gconftool-1 ] then /opt/gnome/bin/gconftool-1 --shutdown fi => This does certainly not hurt, but it's a no-op because [ -e /opt/gnome/bin/gconftool-1 ] is never fulfilled. # add compatibility and default settings for GNOME1 # (set help browsers to epiphany & nautilus) if [ ! -d ~/.gnome ] ; then mkdir -p ~/.gnome cp /usr/share/dist/gnome1/* ~/.gnome/ fi if [ ! -e ~/.gtkrc ] ; then cp /usr/share/dist/gnome1/gtkrc ~/.gtkrc fi => This is 100% obsolete because /usr/share/dist/gnome1 does not exist. It actually even causes ugly, buggy-looking stderr output on first login in ~/.xsession-errors. export GNOME_ICON_PATH=/usr/share/images:$YAST_ICONS/apps:$KDE_CRYSTAL_32/apps:$KDE_CRYSTAL_32/devices:$KDE_CRYSTAL_32/mimetypes:$KDE_CRYSTAL_32/filesystems:$KDE_CRYSTAL_32/actions:$KDE_CRYSTAL_48/apps:$KDE_CRYSTAL_48/devices:$KDE_CRYSTAL_48/mimetypes:$KDE_CRYSTAL_48/filesystems:$KDE_CRYSTAL_48/actions:$GNOME_DEFAULT_48/apps:$GNOME_DEFAULT_32/apps:/usr/share/pixmaps:/opt/gnome/share/pixmaps => Lots of old stuff, /usr/share/images does not exist and /opt/gnome/share/pixmaps could be set within the opt_gnome-compat package. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.