summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2017-02-21 13:50:36 -0800
committerRobin H. Johnson <robbat2@gentoo.org>2017-02-21 13:51:02 -0800
commit2bb45be05dabf0f03a4c690ac13dcb3ab6eda03c (patch)
treefc449a569caf643cd06f603d08d68fa1f04ec569 /sys-apps/man-db/files
parentnet-dns/pdns: Require threads support in dev-libs/botan, bug #609538 (diff)
downloadgentoo-2bb45be05dabf0f03a4c690ac13dcb3ab6eda03c.tar.gz
gentoo-2bb45be05dabf0f03a4c690ac13dcb3ab6eda03c.tar.bz2
gentoo-2bb45be05dabf0f03a4c690ac13dcb3ab6eda03c.zip
sys-apps/man-db: fix quoting in cronjob.
Package-Manager: portage-2.3.3 Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'sys-apps/man-db/files')
-rw-r--r--sys-apps/man-db/files/man-db.cron2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-apps/man-db/files/man-db.cron b/sys-apps/man-db/files/man-db.cron
index d94e594d1acf..b3794f255734 100644
--- a/sys-apps/man-db/files/man-db.cron
+++ b/sys-apps/man-db/files/man-db.cron
@@ -2,7 +2,7 @@
# Use same perms/settings as the ebuild.
cachedir="/var/cache/man"
-if [ ! -d ${cachedir} ]; then
+if [ ! -d "${cachedir}" ]; then
mkdir -p "${cachedir}"
chown man:man "${cachedir}"
chmod 0755 "${cachedir}"