diff options
author | Tavis Ormandy <taviso@gentoo.org> | 2003-06-12 22:10:13 +0000 |
---|---|---|
committer | Tavis Ormandy <taviso@gentoo.org> | 2003-06-12 22:10:13 +0000 |
commit | 7ed0be74feca149dcae479adf33f79c6f051c194 (patch) | |
tree | 1ea06634b92724f42ed1807d9ecd4259f1c9eaa0 /app-shells | |
parent | fix Header (diff) | |
download | historical-7ed0be74feca149dcae479adf33f79c6f051c194.tar.gz historical-7ed0be74feca149dcae479adf33f79c6f051c194.tar.bz2 historical-7ed0be74feca149dcae479adf33f79c6f051c194.zip |
fixing a typo.
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/csh/Manifest | 2 | ||||
-rw-r--r-- | app-shells/csh/csh-1.29-r1.ebuild | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/app-shells/csh/Manifest b/app-shells/csh/Manifest index a412897ed27c..ea7013d3659c 100644 --- a/app-shells/csh/Manifest +++ b/app-shells/csh/Manifest @@ -1,5 +1,5 @@ MD5 40d1ad4d9431c17c016fb5e5e65210b0 csh-1.29.ebuild 3809 -MD5 b28f2fb88418ab67908de1ed55861e6c csh-1.29-r1.ebuild 4211 +MD5 7a6525cf208da371175f36abcc4bfee5 csh-1.29-r1.ebuild 4213 MD5 a2e33a5f9d0ca529d3b90613b0dddb15 ChangeLog 1163 MD5 49c0a95e6881eb7e2932d149f62f0de2 files/mksignames.c 10722 MD5 49ee962115384f8a0acedfcf225fd27a files/digest-csh-1.29 148 diff --git a/app-shells/csh/csh-1.29-r1.ebuild b/app-shells/csh/csh-1.29-r1.ebuild index a0c994490998..146fe9579409 100644 --- a/app-shells/csh/csh-1.29-r1.ebuild +++ b/app-shells/csh/csh-1.29-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/csh/csh-1.29-r1.ebuild,v 1.2 2003/06/12 21:57:51 taviso Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/csh/csh-1.29-r1.ebuild,v 1.3 2003/06/12 22:10:04 taviso Exp $ DESCRIPTION="Classic UNIX shell with C like syntax" HOMEPAGE="http://www.netbsd.org/" @@ -47,7 +47,9 @@ src_compile() { printf "/* automatically generated during %s build */\n\n" ${PF} > ${S}/signames.h printf "const char *const sys_signame[NSIG + 3] = {\n" >> ${S}/signames.h - printf "\t\"EXIT\",\t\n" $((cnt++)) >> ${S}/signames.h + printf "\t\"EXIT\",\t\n" >> ${S}/signames.h + + let cnt++ for i in `kill -l` do |