summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'bin/postinst-qa-check.d/50xdg-utils')
-rw-r--r--bin/postinst-qa-check.d/50xdg-utils4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/postinst-qa-check.d/50xdg-utils b/bin/postinst-qa-check.d/50xdg-utils
index 4bc7bee9a..b0bb029bd 100644
--- a/bin/postinst-qa-check.d/50xdg-utils
+++ b/bin/postinst-qa-check.d/50xdg-utils
@@ -9,7 +9,7 @@ xdg_desktop_database_check() {
# if the cache does not exist at all, we complain for any file
# otherwise, we look for files newer than the cache
[[ -f ${d}/mimeinfo.cache ]] &&
- find_args+=( -newer "${d}"/mimeinfo.cache )
+ find_args+=( -newercm "${d}"/mimeinfo.cache )
# look for any .desktop files that are newer than the cache
# and that have any mime types defined
@@ -37,7 +37,7 @@ xdg_mimeinfo_database_check() {
# if the cache does not exist at all, we complain for any file
# otherwise, we look for files newer than the cache
[[ -f ${d}/mime.cache ]] &&
- find_args+=( -newer "${d}"/mime.cache )
+ find_args+=( -newercm "${d}"/mime.cache )
while read -r -d $'\0' f; do
files+=( "${f}" )