summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2016-12-13 04:29:02 +0000
committerColin Watson <cjwatson@debian.org>2016-12-13 04:29:02 +0000
commit74554ff9aa45e5652fb32bbacd4d79b8e91eb77e (patch)
treed05af7481def4c9e80af792d7b311643ef1502dc /m4
parent42e36bee2ddbbecc930d84befbae164fc2be0481 (diff)
Rename SECURE_MAN_UID to MAN_OWNER
The latter had always been defined to the former anyway, and now that the cache owner can be changed without actually installing setuid the latter is more descriptive. * m4/man-arg-cache-owner.m4: Define MAN_OWNER rather than SECURE_MAN_UID. Update all users. * include/manconfig.h.in (MAN_OWNER): Remove definition.
Diffstat (limited to 'm4')
-rw-r--r--m4/man-arg-cache-owner.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/man-arg-cache-owner.m4 b/m4/man-arg-cache-owner.m4
index dae9ecc3..67d72aa6 100644
--- a/m4/man-arg-cache-owner.m4
+++ b/m4/man-arg-cache-owner.m4
@@ -18,10 +18,10 @@ AS_HELP_STRING([--disable-cache-owner], [don't constrain ownership of system-wid
else
man_owner=$enableval
AC_MSG_NOTICE([System-wide cache files will be owned by $enableval])
- AC_DEFINE_UNQUOTED([SECURE_MAN_UID], ["$man_owner"],
+ AC_DEFINE_UNQUOTED([MAN_OWNER], ["$man_owner"],
[Define as the owner of system-wide cache files.])
fi],
[man_owner=man
- AC_DEFINE_UNQUOTED([SECURE_MAN_UID], ["$man_owner"])])
+ AC_DEFINE_UNQUOTED([MAN_OWNER], ["$man_owner"])])
AC_SUBST([man_owner])
])