Fix a typo in pkg-install. Should use -m and not -M for install(1).

Noticed by:	sunpoet@
This commit is contained in:
Wesley Shields 2011-04-12 03:42:45 +00:00
parent 25b8e4ae15
commit 98eeed761f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=272573

View File

@ -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