diff options
author | Fabian Groffen <grobian@gentoo.org> | 2006-01-29 11:19:23 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2006-01-29 11:19:23 +0000 |
commit | 89dc104e2b33e8618801c899f940943269c8b523 (patch) | |
tree | d93abc846c5d86619bb884d38714a2bdb4afe2db /app-shells/tcsh/files | |
parent | Stable on ppc64 (diff) | |
download | gentoo-2-89dc104e2b33e8618801c899f940943269c8b523.tar.gz gentoo-2-89dc104e2b33e8618801c899f940943269c8b523.tar.bz2 gentoo-2-89dc104e2b33e8618801c899f940943269c8b523.zip |
Making fixes for bug #119703: providing a csh -> tcsh symlink, and bug #120792 to stop tcsh complaining on newest coreutils' LS_COLORS var.
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'app-shells/tcsh/files')
-rw-r--r-- | app-shells/tcsh/files/digest-tcsh-6.14-r3 | 2 | ||||
-rw-r--r-- | app-shells/tcsh/files/tcsh-6.14.00-debian-dircolors.patch | 19 |
2 files changed, 21 insertions, 0 deletions
diff --git a/app-shells/tcsh/files/digest-tcsh-6.14-r3 b/app-shells/tcsh/files/digest-tcsh-6.14-r3 new file mode 100644 index 000000000000..077052c4f630 --- /dev/null +++ b/app-shells/tcsh/files/digest-tcsh-6.14-r3 @@ -0,0 +1,2 @@ +MD5 353d1bb7d2741bf8de602c7b6f0efd79 tcsh-6.14.00.tar.gz 859780 +MD5 06d9a00fa7e034394bf1152f0fc3e950 tcsh-6.14-conffiles.tar.bz2 20200 diff --git a/app-shells/tcsh/files/tcsh-6.14.00-debian-dircolors.patch b/app-shells/tcsh/files/tcsh-6.14.00-debian-dircolors.patch new file mode 100644 index 000000000000..194d478c403f --- /dev/null +++ b/app-shells/tcsh/files/tcsh-6.14.00-debian-dircolors.patch @@ -0,0 +1,19 @@ +--- tcsh-6.14.00/tw.color.c ++++ tcsh-6.14.00/tw.color.c +@@ -235,13 +235,10 @@ + if ((Char)variables[i].variable[0] == (v[0] & CHAR) && + (Char)variables[i].variable[1] == (v[1] & CHAR)) + break; +- if (i < nvariables) { +- v += 3; ++ v += 3; ++ if (i < nvariables) + getstring(&c, &v, &variables[i].color, ':'); +- continue; +- } +- else +- stderror(ERR_BADCOLORVAR, v[0], v[1]); ++ continue; + } + break; + } |