Avoid chown'ing /usr/local/man/man* to news:news.

This commit is contained in:
Dag-Erling Smørgrav 2001-03-11 01:06:19 +00:00
parent 72fdb3b9f5
commit a283186713
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=39499
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,13 @@
--- Makefile.orig Sun Mar 11 01:59:11 2001
+++ Makefile Sun Mar 11 01:59:56 2001
@@ -81,7 +81,9 @@
directories:
@chmod +x support/install-sh
for D in $(INSTDIRS) ; do \
- support/install-sh $(OWNER) -m 0755 -d $$D ; \
+ if [ ! -d $$D ] ; then \
+ support/install-sh $(OWNER) -m 0755 -d $$D ; \
+ fi ; \
done
support/install-sh $(OWNER) -m 0750 -d $(PATHRUN)

13
news/inn/files/patch-aa Normal file
View file

@ -0,0 +1,13 @@
--- Makefile.orig Sun Mar 11 01:59:11 2001
+++ Makefile Sun Mar 11 01:59:56 2001
@@ -81,7 +81,9 @@
directories:
@chmod +x support/install-sh
for D in $(INSTDIRS) ; do \
- support/install-sh $(OWNER) -m 0755 -d $$D ; \
+ if [ ! -d $$D ] ; then \
+ support/install-sh $(OWNER) -m 0755 -d $$D ; \
+ fi ; \
done
support/install-sh $(OWNER) -m 0750 -d $(PATHRUN)