diff options
author | kris <kris@FreeBSD.org> | 2002-09-07 11:02:47 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2002-09-07 11:02:47 +0800 |
commit | 5f2d8ccdc0e5259fd3ca83f46d0adf8963e62f37 (patch) | |
tree | 77d3aa9e0eacb8069e90f569a07c314fb9743596 /games | |
parent | c57bc05646ad29060aaf001f6e36ff089a7ce90a (diff) | |
download | freebsd-ports-gnome-5f2d8ccdc0e5259fd3ca83f46d0adf8963e62f37.tar.gz freebsd-ports-gnome-5f2d8ccdc0e5259fd3ca83f46d0adf8963e62f37.tar.zst freebsd-ports-gnome-5f2d8ccdc0e5259fd3ca83f46d0adf8963e62f37.zip |
Use posix syntax for chown
Diffstat (limited to 'games')
-rw-r--r-- | games/golddig/files/patch-ad | 4 |
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. |