diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-08-23 03:57:07 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-08-23 03:57:07 +0000 |
commit | 303240bcf89ce7b89281e89560bc8b3ddc7c1317 (patch) | |
tree | 1ec2fc3e216cae78b1607741aaf00df2718e8d31 /games/sokoban | |
parent | 8b416a6d9f5411dfed45d1fdd23039a94fdbfe9a (diff) |
Use POSIX syntax for chown to fix install on 5.x
Notes
Notes:
svn path=/head/; revision=64857
Diffstat (limited to 'games/sokoban')
-rw-r--r-- | games/sokoban/pkg-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/sokoban/pkg-install b/games/sokoban/pkg-install index 9587d65b8106..9bd7ee94714e 100644 --- a/games/sokoban/pkg-install +++ b/games/sokoban/pkg-install @@ -6,4 +6,4 @@ FILE="/var/games/sokoban" echo "===> Creating initial high score file $FILE" dd if=/dev/zero of=$FILE bs=1 count=2 chmod 664 $FILE -chown root.games $FILE +chown root:games $FILE |