shared-mime-info_0.16.bb: fixed broken postinstall script

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1392 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Tomas Frydrych 2007-03-27 07:33:59 +00:00
parent 46b2fe973d
commit f91a0fb043
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
SECTION = "base"
PR = "r1"
PR = "r2"
DEPENDS = "libxml2 intltool-native"
@ -13,6 +13,6 @@ FILES_${PN} += "${datadir}/mime"
EXTRA_OECONF = "--disable-update-mimedb"
pkg_postinst () {
echo "Updating MIME database... this may take a while."
${bindir}/update-mime-database ${datadir}/mime
echo "Updating MIME database in $D${datadir}/mime ... (This may take a while.)"
${bindir}/update-mime-database $D${datadir}/mime
}