mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
edd78a5bb3
Reported by: GNOME Tinderbox
13 lines
172 B
Bash
13 lines
172 B
Bash
#!/bin/sh
|
|
|
|
case $2 in
|
|
POST-INSTALL)
|
|
for mdir in %%MIMEDIRS%%; do
|
|
if [ -d ${mdir} ]; then
|
|
%%PREFIX%%/bin/update-mime-database ${mdir}
|
|
fi
|
|
done
|
|
exit 0
|
|
;;
|
|
esac
|