- Backport a patch to ignore LS_COLOR codes introduced in newer coreutils
(#186037)
This commit is contained in:
parent
5533df3a65
commit
bed8c67a16
14
tcsh-6.14.00-colors.patch
Normal file
14
tcsh-6.14.00-colors.patch
Normal file
@ -0,0 +1,14 @@
|
||||
--- tcsh-6.14.00/tw.color.c.colors 2006-03-23 02:59:40.000000000 +0100
|
||||
+++ tcsh-6.14.00/tw.color.c 2006-03-23 03:00:44.000000000 +0100
|
||||
@@ -80,6 +80,11 @@
|
||||
#endif
|
||||
VAR(NOS, "rc", "m"), /* Right code */
|
||||
VAR(NOS, "ec", ""), /* End code (replaces lc+no+rc) */
|
||||
+ VAR(NOS, "su", ""), /* Setuid file (u+s) */
|
||||
+ VAR(NOS, "sg", ""), /* Setgid file (g+s) */
|
||||
+ VAR(NOS, "tw", ""), /* Sticky and other writable dir (+t,o+w) */
|
||||
+ VAR(NOS, "ow", ""), /* Other writable dir (o+w) but not sticky */
|
||||
+ VAR(NOS, "st", ""), /* Sticky dir (+t) but not other writable */
|
||||
};
|
||||
|
||||
enum FileType {
|
@ -3,7 +3,7 @@
|
||||
Summary: An enhanced version of csh, the C shell.
|
||||
Name: tcsh
|
||||
Version: 6.14
|
||||
Release: 7
|
||||
Release: 8
|
||||
License: distributable
|
||||
Group: System Environment/Shells
|
||||
Source: ftp://ftp.astron.com/pub/tcsh/tcsh-%{version}.00.tar.gz
|
||||
@ -15,6 +15,7 @@ Patch4: tcsh-6.14.00-dashn.patch
|
||||
Patch5: tcsh-6.14.00-read.patch
|
||||
Patch6: tcsh-6.14.00-sigint.patch
|
||||
Patch7: tcsh-6.14.00-wide-crash.patch
|
||||
Patch8: tcsh-6.14.00-colors.patch
|
||||
Provides: csh = %{version}
|
||||
Prereq: fileutils, grep
|
||||
URL: http://www.tcsh.org/
|
||||
@ -39,6 +40,7 @@ like syntax.
|
||||
%patch5 -p1 -b .read
|
||||
%patch6 -p1 -b .sigint
|
||||
%patch7 -p1 -b .wide-crash
|
||||
%patch8 -p1 -b .colors
|
||||
|
||||
nroff -me eight-bit.me > eight-bit.txt
|
||||
|
||||
@ -106,6 +108,10 @@ fi
|
||||
%{_mandir}/*/*
|
||||
|
||||
%changelog
|
||||
* Thu Mar 23 2006 Miloslav Trmac <mitr@redhat.com> - 6.14-8
|
||||
- Backport a patch to ignore LS_COLOR codes introduced in newer coreutils
|
||||
(#186037)
|
||||
|
||||
* Sat Mar 18 2006 Miloslav Trmac <mitr@redhat.com> - 6.14-7
|
||||
- Fix a crash when reading scripts with multibyte characters (#183267)
|
||||
- Block SIGINT while waiting for children (#177366)
|
||||
|
Loading…
Reference in New Issue
Block a user