69be72a64a
Post-Installation scripts are running `update-desktop-database -q` creating these files which obviously results in a lot of collisions. Much better solution than eventually noticing their existence and removing them in postInstall.
7 lines
157 B
Bash
7 lines
157 B
Bash
# Remove mimeinfo cache
|
|
mimeinfoPreFixupPhase() {
|
|
rm -f $out/share/applications/mimeinfo.cache
|
|
}
|
|
|
|
preFixupPhases="$preFixupPhases mimeinfoPreFixupPhase"
|