From 98eeed761f86effce26f4a05eb01ee41af5ef6c9 Mon Sep 17 00:00:00 2001 From: Wesley Shields Date: Tue, 12 Apr 2011 03:42:45 +0000 Subject: [PATCH] Fix a typo in pkg-install. Should use -m and not -M for install(1). Noticed by: sunpoet@ --- security/sudo/pkg-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/security/sudo/pkg-install b/security/sudo/pkg-install index 7ae3587ce943..8dd08a559ab3 100644 --- a/security/sudo/pkg-install +++ b/security/sudo/pkg-install @@ -7,7 +7,7 @@ PATH=/bin:/usr/bin:/usr/sbin case $2 in PRE-INSTALL) - install -d -o 0 -g 0 -M 0750 ${PKG_PREFIX}/etc/sudoers.d + install -d -o 0 -g 0 -m 0750 ${PKG_PREFIX}/etc/sudoers.d ;; esac