- woops, that is really broken

This commit is contained in:
Florian La Roche 2004-10-13 09:18:48 +00:00
parent 62dcfa904c
commit 08dcf69661
2 changed files with 14 additions and 9 deletions

View File

@ -12,16 +12,14 @@
# source function library
. /etc/init.d/functions
if test -e /etc/sysconfig/mouse
then
source /etc/sysconfig/mouse
MOUSECFG=/etc/sysconfig/mouse
fi
if test -e /etc/sysconfig/gpm
then
source /etc/sysconfig/gpm
if test -e /etc/sysconfig/gpm ; then
. /etc/sysconfig/gpm
MOUSECFG=/etc/sysconfig/gpm
fi
if test -e /etc/sysconfig/mouse ; then
. /etc/sysconfig/mouse
MOUSECFG=/etc/sysconfig/mouse
fi
RETVAL=0

View File

@ -1,7 +1,7 @@
Summary: A mouse server for the Linux console.
Name: gpm
Version: 1.20.1
Release: 57
Release: 58
License: GPL
Group: System Environment/Daemons
Source: http://ftp.linux.it/pub/People/rubini/gpm/%{name}-%{version}.tar.gz
@ -171,6 +171,13 @@ fi
%{_libdir}/libgpm.so
%changelog
* Wed Oct 13 2004 Florian La Roche <laroche@redhat.com>
- sysconfig/gpm should probably go away, that is more confusing than
helping anyone
- read at least sysconfig/gpm first as it seems to have the default values
and sysconfig/mouse is getting probed values and probably has better
settings in it.
* Tue Oct 12 2004 Adrian Havill <havill@redhat.com> 1.20.1-57
- read both the sysconfig/mouse and sysconfig/gpm (preferrence to gpm
settings), not just one of them, if both exist (#134389)