diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-09-07 03:02:47 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-09-07 03:02:47 +0000 |
commit | 5295effe7d364260e367f482ba1b71749f269319 (patch) | |
tree | a4f1232a1c19ea3cb8ba03187fe9f13e847beca4 | |
parent | Fix compilation on -current (diff) |
Use posix syntax for chown
-rw-r--r-- | comms/efax/files/patch-src:fax | 2 | ||||
-rw-r--r-- | games/golddig/files/patch-ad | 4 | ||||
-rw-r--r-- | www/http-analyze/files/patch-aa | 10 |
3 files changed, 9 insertions, 7 deletions
diff --git a/comms/efax/files/patch-src:fax b/comms/efax/files/patch-src:fax index 0ff329de58aa..497c20070088 100644 --- a/comms/efax/files/patch-src:fax +++ b/comms/efax/files/patch-src:fax @@ -56,7 +56,7 @@ -OWNER=root.tty # typical -MODE=666 # anybody -# MODE=660 # only owner & group -+OWNER=uucp.dialer # typical ++OWNER=uucp:dialer # typical +#MODE=666 # anybody +MODE=660 # only owner & group 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. diff --git a/www/http-analyze/files/patch-aa b/www/http-analyze/files/patch-aa index af708858ac85..e6939941c6af 100644 --- a/www/http-analyze/files/patch-aa +++ b/www/http-analyze/files/patch-aa @@ -1,5 +1,5 @@ ---- Makefile.orig Thu Apr 2 15:53:41 1998 -+++ Makefile Sat Apr 18 11:37:54 1998 +--- Makefile.orig Sun May 31 06:06:53 1998 ++++ Makefile Fri Sep 6 20:00:06 2002 @@ -28,9 +28,9 @@ # SVR4 /usr/share/man/cat1 - 1 # Linux /usr/local/man/man1 - man @@ -59,11 +59,13 @@ LDFLAGS = LINT = lint -Dunix -Xa -u LIBS = -lm -@@ -213,13 +217,14 @@ +@@ -212,14 +216,15 @@ + cp http-analyze.$(EXTENSION) $(LOCALMAN)/http-analyze.1 chmod 755 $(LOCALBIN)/http-analyze $(LOCALBIN)/ha-setup chmod 444 $(LOCALMAN)/http-analyze.1 - chown bin.bin $(LOCALBIN)/http-analyze $(LOCALBIN)/ha-setup +- chown bin.bin $(LOCALBIN)/http-analyze $(LOCALBIN)/ha-setup - $(COMPRESS) $(LOCALMAN)/http-analyze.1 ++ chown bin:bin $(LOCALBIN)/http-analyze $(LOCALBIN)/ha-setup + -mkdir -p $(PREFIX)/share/doc/http-analyze + cp http-analyze.pdf http-analyze.ps $(PREFIX)/share/doc/http-analyze -mkdir -p $(LOCALLIB)/http-analyze/btn |