summaryrefslogtreecommitdiff
path: root/games/golddig
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2002-09-07 03:02:47 +0000
committerKris Kennaway <kris@FreeBSD.org>2002-09-07 03:02:47 +0000
commit5295effe7d364260e367f482ba1b71749f269319 (patch)
treea4f1232a1c19ea3cb8ba03187fe9f13e847beca4 /games/golddig
parentFix compilation on -current (diff)
Use posix syntax for chown
Notes
Notes: svn path=/head/; revision=65756
Diffstat (limited to 'games/golddig')
-rw-r--r--games/golddig/files/patch-ad4
1 files changed, 2 insertions, 2 deletions
diff --git a/games/golddig/files/patch-ad b/games/golddig/files/patch-ad
index 78b5dac3ad1b..cddd0874e257 100644
--- a/games/golddig/files/patch-ad
+++ b/games/golddig/files/patch-ad
@@ -39,14 +39,14 @@
install: all
-mkdir ${LIB}
cp ${GAME} ${EDITOR} ${BIN}
-+ chown root.games ${BIN}/${GAME}
++ chown root:games ${BIN}/${GAME}
+ chmod g+s ${BIN}/${GAME}
# The next line sets up the level files so that anyone can edit all of
# the levels. Remove this line to have better security.
- chmod 4755 ${BIN}/${EDITOR}
+# chmod 4755 ${BIN}/${EDITOR}
touch ${LIB}/scores
-+ chown root.games ${LIB}/scores
++ chown root:games ${LIB}/scores
+ chmod g+w ${LIB}/scores
# Allow anyone to modify the high score file. An alternative is to
# change the mode bits of ${GAME} to be 4755.