diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2007-06-26 02:06:19 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2007-06-26 02:06:19 +0000 |
commit | 97349a0ac9f6af78e8a1a0f908a3b6c228f06210 (patch) | |
tree | c1ace7a59ad37cdf4c60b5b53bb8d4c1b625cc53 /dev-util/yacc | |
parent | whitespace (diff) | |
download | historical-97349a0ac9f6af78e8a1a0f908a3b6c228f06210.tar.gz historical-97349a0ac9f6af78e8a1a0f908a3b6c228f06210.tar.bz2 historical-97349a0ac9f6af78e8a1a0f908a3b6c228f06210.zip |
whitespace
Package-Manager: portage-2.1.2.7
Diffstat (limited to 'dev-util/yacc')
-rw-r--r-- | dev-util/yacc/yacc-1.9.1-r3.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-util/yacc/yacc-1.9.1-r3.ebuild b/dev-util/yacc/yacc-1.9.1-r3.ebuild index e08581e46bbe..cd93d7b86b1e 100644 --- a/dev-util/yacc/yacc-1.9.1-r3.ebuild +++ b/dev-util/yacc/yacc-1.9.1-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/yacc/yacc-1.9.1-r3.ebuild,v 1.1 2007/01/17 13:07:13 truedfx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/yacc/yacc-1.9.1-r3.ebuild,v 1.2 2007/06/26 02:06:19 mr_bones_ Exp $ inherit eutils toolchain-funcs @@ -43,7 +43,7 @@ src_install() { pkg_preinst() { # bison installs a /usr/bin/yacc symlink ... - # we need to remove it to avoid triggering + # we need to remove it to avoid triggering # collision-protect errors #90089 if [[ -L ${ROOT}/usr/bin/yacc ]] ; then rm -f "${ROOT}"/usr/bin/yacc @@ -51,7 +51,7 @@ pkg_preinst() { } pkg_postrm() { - # and if we uninstall yacc but keep bison, + # and if we uninstall yacc but keep bison, # lets restore the /usr/bin/yacc symlink if [[ ! -e ${ROOT}/usr/bin/yacc ]] && [[ -e ${ROOT}/usr/bin/yacc.bison ]] ; then ln -s yacc.bison "${ROOT}"/usr/bin/yacc |