diff options
author | 2002-03-27 23:29:49 +0000 | |
---|---|---|
committer | 2002-03-27 23:29:49 +0000 | |
commit | 4d9083e8c158f2972c621163b4fb65675f9afb41 (patch) | |
tree | 00632973f206dc51c4a67bf599201fd2390c5ec8 /eclass | |
parent | last nls fix fixed (diff) | |
download | historical-4d9083e8c158f2972c621163b4fb65675f9afb41.tar.gz historical-4d9083e8c158f2972c621163b4fb65675f9afb41.tar.bz2 historical-4d9083e8c158f2972c621163b4fb65675f9afb41.zip |
kde_sandbox_patch() typo fix
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde.eclass | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass index e56f6fb97f8e..e554efa6ff7c 100644 --- a/eclass/kde.eclass +++ b/eclass/kde.eclass @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Dan Armak <danarmak@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.43 2002/03/27 22:33:53 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.44 2002/03/27 23:29:49 danarmak Exp $ # The kde eclass is inherited by all kde-* eclasses. Few ebuilds inherit straight from here. inherit base kde-functions ECLASS=kde @@ -114,9 +114,8 @@ kde_sandbox_patch() { do [ -f "$x" ] && \ cp $x ${x}.orig && \ - sed -e 's: $(bindir): $(DESTDIR)/$(bindir):g' ${x}.orig > ${x} && \ - rm ${x}.orig - sed -e 's: $(kde_datadir): $(DESTDIR)/$(kde_datadir):g' ${x}.orig > ${x} && \ + sed -e 's: $(bindir): $(DESTDIR)/$(bindir):g' \ + -e 's: $(kde_datadir): $(DESTDIR)/$(kde_datadir):g' > ${x}.orig ${x} && \ rm ${x}.orig done shift |