diff options
author | Marinus Schraal <foser@gentoo.org> | 2006-06-20 12:18:27 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2006-06-20 12:18:27 +0000 |
commit | 7f21bd476149b474f8d79b3c54741823077f527d (patch) | |
tree | a178b367a1f37f924ffb068aa836704fe03890c4 /eclass/fdo-mime.eclass | |
parent | Stable on SPARC wrt security bug #135886. (diff) | |
download | historical-7f21bd476149b474f8d79b3c54741823077f527d.tar.gz historical-7f21bd476149b474f8d79b3c54741823077f527d.tar.bz2 historical-7f21bd476149b474f8d79b3c54741823077f527d.zip |
update in ROOT (#114926)
Diffstat (limited to 'eclass/fdo-mime.eclass')
-rw-r--r-- | eclass/fdo-mime.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/fdo-mime.eclass b/eclass/fdo-mime.eclass index 281540f024a1..0f526fb236bc 100644 --- a/eclass/fdo-mime.eclass +++ b/eclass/fdo-mime.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/fdo-mime.eclass,v 1.4 2005/07/06 20:23:20 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/fdo-mime.eclass,v 1.5 2006/06/20 12:18:27 foser Exp $ # Author: # foser <foser@gentoo.org> @@ -17,7 +17,7 @@ fdo-mime_desktop_database_update() { if [ -x ${ROOT}/usr/bin/update-desktop-database ] then einfo "Updating desktop mime database ..." - update-desktop-database -q /usr/share/applications + ${ROOT}/usr/bin/update-desktop-database -q ${ROOT}/usr/share/applications fi } @@ -30,7 +30,7 @@ fdo-mime_mime_database_update() { if [ -x ${ROOT}/usr/bin/update-mime-database ] then einfo "Updating shared mime info database ..." - update-mime-database /usr/share/mime + ${ROOT}/usr/bin/update-mime-database ${ROOT}/usr/share/mime fi } |