diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-08-24 07:41:21 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-08-24 07:41:21 +0000 |
commit | e2911fd5279ea036f1ecc35f5c577633bef4cfac (patch) | |
tree | 46b0bd86bf186ba0e03381ba47c2208ca768d518 /app-accessibility/speech-tools/speech-tools-1.2.3-r3.ebuild | |
parent | Fix for security bug #102375 (diff) | |
download | gentoo-2-e2911fd5279ea036f1ecc35f5c577633bef4cfac.tar.gz gentoo-2-e2911fd5279ea036f1ecc35f5c577633bef4cfac.tar.bz2 gentoo-2-e2911fd5279ea036f1ecc35f5c577633bef4cfac.zip |
Don't call chown with root:root. Call sed with -e to state the expression.
(Portage version: 2.0.51.22)
Diffstat (limited to 'app-accessibility/speech-tools/speech-tools-1.2.3-r3.ebuild')
-rw-r--r-- | app-accessibility/speech-tools/speech-tools-1.2.3-r3.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app-accessibility/speech-tools/speech-tools-1.2.3-r3.ebuild b/app-accessibility/speech-tools/speech-tools-1.2.3-r3.ebuild index 42dd6ba4741c..4fe20b86375f 100644 --- a/app-accessibility/speech-tools/speech-tools-1.2.3-r3.ebuild +++ b/app-accessibility/speech-tools/speech-tools-1.2.3-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-tools/speech-tools-1.2.3-r3.ebuild,v 1.4 2005/07/30 20:25:54 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-tools/speech-tools-1.2.3-r3.ebuild,v 1.5 2005/08/24 07:41:21 flameeyes Exp $ IUSE="doc esd X" @@ -89,9 +89,9 @@ src_install() { find . -print | cpio -pmd ${D}/usr/include/speech-tools || die "Unable to install include files" dosym /usr/include/speech-tools /usr/share/speech-tools/include - chown -R root:root ${D} + chown -R root:0 ${D} - find ${D}/usr/share/speech-tools/config -type f | xargs sed -i 's/-ltermcap/-lncurses/g' + find ${D}/usr/share/speech-tools/config -type f | xargs sed -i -e 's/-ltermcap/-lncurses/g' doenvd ${FILESDIR}/58speech-tools |