Removed repeated words in man

Resolves: #948884
This commit is contained in:
Fridolin Pokorny 2013-04-05 16:32:13 +02:00
parent fbd41bb2e6
commit ef5bdb2719
2 changed files with 28 additions and 1 deletions

View File

@ -0,0 +1,21 @@
diff -upr tcsh-6.18.01_orig/tcsh.man tcsh-6.18.01_work/tcsh.man
--- tcsh-6.18.01_orig/tcsh.man 2013-04-05 16:22:07.299927566 +0200
+++ tcsh-6.18.01_work/tcsh.man 2013-04-05 16:22:37.885019969 +0200
@@ -1401,7 +1401,7 @@ The \fBglobstar\fR shell variable can be
a file glob pattern that matches any string of characters including `/',
recursively traversing any existing sub-directories. For example,
`ls **.c' will list all the .c files in the current directory tree.
-If used by itself, it will match match zero or more sub-directories
+If used by itself, it will match zero or more sub-directories
(e.g. `ls /usr/include/**/time.h' will list any file named `time.h'
in the /usr/include directory tree; `ls /usr/include/**time.h' will match
any file in the /usr/include directory tree ending in `time.h'; and
@@ -3887,7 +3887,7 @@ with `.' except for `.' and `..'
If set, the `**' and `***' file glob patterns will match any string of
characters including `/' traversing any existing sub-directories. (e.g.
`ls **.c' will list all the .c files in the current directory tree).
-If used by itself, it will match match zero or more sub-directories
+If used by itself, it will match zero or more sub-directories
(e.g. `ls /usr/include/**/time.h' will list any file named `time.h'
in the /usr/include directory tree; whereas `ls /usr/include/**time.h'
will match any file in the /usr/include directory tree ending in `time.h').

View File

@ -3,7 +3,7 @@
Summary: An enhanced version of csh, the C shell
Name: tcsh
Version: 6.18.01
Release: 1%{?dist}
Release: 2%{?dist}
License: BSD
Group: System Environment/Shells
Source: http://ftp.funet.fi/pub/unix/shells/tcsh/old/%{name}-%{version}.tar.gz
@ -21,6 +21,7 @@ Patch31: tcsh-6.18.00-history-file-locking.patch
# Accepted upstream - http://mx.gw.com/pipermail/tcsh-bugs/2012-December/000797.html
#Patch32: tcsh-6.18.00-sigint-while-waiting-for-child.patch
Patch33: tcsh-6.18.00-history-merge.patch
Patch34: tcsh-6.18.01-repeated-words-man.patch
Provides: csh = %{version}
Requires(post): grep
@ -50,6 +51,7 @@ like syntax.
%patch31 -p1 -b .history-file-locking
#%patch32 -p1 -b .sigint-while-waiting-for-child
%patch33 -p1 -b .history-merge
%patch34 -p1 -b .repeated-words-man
for i in Fixes WishList; do
iconv -f iso-8859-1 -t utf-8 "$i" > "${i}_" && \
@ -123,6 +125,10 @@ fi
%{_mandir}/man1/*.1*
%changelog
* Mon Apr 08 2013 Fridolin Pokorny <fpokorny@redhat.com> 6.18.01-2
- Removed repeated words in man
Resolves: #948884
* Fri Apr 05 2013 Fridolin Pokorny <fpokorny@redhat.com> 6.18.01-1
- Update to tcsh-6.18.01
- Removed tcsh-6.18.00-history-savehist.patch, not accepted by upstream