diff options
author | 2002-04-17 20:01:39 +0000 | |
---|---|---|
committer | 2002-04-17 20:01:39 +0000 | |
commit | 729f394417d3777c75be72c0caf38ff95f4d84cc (patch) | |
tree | c2dc1ee6e780ae1dd7f9b73928e68cd77068b00f /eclass/kde-functions.eclass | |
parent | Corrected ebuild to actually install some documentation. Refined GTK+ depende... (diff) | |
download | historical-729f394417d3777c75be72c0caf38ff95f4d84cc.tar.gz historical-729f394417d3777c75be72c0caf38ff95f4d84cc.tar.bz2 historical-729f394417d3777c75be72c0caf38ff95f4d84cc.zip |
extend kde_sandbox_patch() to work for new kdemulitmedia fix
Diffstat (limited to 'eclass/kde-functions.eclass')
-rw-r--r-- | eclass/kde-functions.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/kde-functions.eclass b/eclass/kde-functions.eclass index 7e5f3d42e5b4..fb6c5f937d12 100644 --- a/eclass/kde-functions.eclass +++ b/eclass/kde-functions.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-functions.eclass,v 1.4 2002/04/13 16:19:51 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde-functions.eclass,v 1.5 2002/04/17 20:01:39 danarmak Exp $ # This contains everything except things that modify ebuild variables and functions (e.g. $P, src_compile() etc.) ECLASS=kde-functions @@ -166,7 +166,7 @@ kde_sandbox_patch() { if [ -f "$x" ]; then echo Running sed on $x cp $x ${x}.orig - sed -e 's: $(bindir): $(DESTDIR)/$(bindir):g' -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' -e 's: $(TIMID_DIR): $(DESTDIR)/$(TIMID_DIR):g' ${x}.orig > ${x} rm ${x}.orig fi done |