diff options
author | Cristian Gafton <gafton@redhat.com> | 1998-10-03 22:00:34 +0000 |
---|---|---|
committer | Cristian Gafton <gafton@redhat.com> | 1998-10-03 22:00:34 +0000 |
commit | 78aed1a5af1bb1553b577907c793641555750e4b (patch) | |
tree | 6c9b4c82a533dd5e87d585e20ef85de554b5ab61 | |
parent | 61691776b27e46f2f64b52841aba580de1caef67 (diff) | |
download | initscripts-78aed1a5af1bb1553b577907c793641555750e4b.tar initscripts-78aed1a5af1bb1553b577907c793641555750e4b.tar.gz initscripts-78aed1a5af1bb1553b577907c793641555750e4b.tar.bz2 initscripts-78aed1a5af1bb1553b577907c793641555750e4b.tar.xz initscripts-78aed1a5af1bb1553b577907c793641555750e4b.zip |
Use SYSTERM, not SYSTEM in lang.sh
-rw-r--r-- | .cvsignore | 1 | ||||
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | initscripts.spec | 2 | ||||
-rwxr-xr-x | lang.sh | 4 |
4 files changed, 8 insertions, 3 deletions
diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 00000000..9fca2a13 --- /dev/null +++ b/.cvsignore @@ -0,0 +1 @@ +initscripts*.tar.gz diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 00000000..80e9fc66 --- /dev/null +++ b/ChangeLog @@ -0,0 +1,4 @@ +1998-10-03 Cristian Gafton <gafton@redhat.com> + + * lang.sh: use SYSTERM, not SYSTEM + diff --git a/initscripts.spec b/initscripts.spec index 899b1c3c..214adbb1 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -1,6 +1,6 @@ Summary: inittab and /etc/rc.d scripts Name: initscripts -%define version 3.72 +%define version 3.73 Version: %{version} Copyright: GPL Group: Base @@ -20,8 +20,8 @@ if [ -f /etc/sysconfig/i18n ]; then loadunimap $UNIMAP fi - if [ -n "$SYSTEM" ] ; then - case $SYSTEM in + if [ -n "$SYSTERM" ] ; then + case $SYSTERM in linux-lat) LESSCHARSET=latin1 INPUTRC=/etc/inputrc |