Avoid chown'ing /usr/local/man/man* to news:news.
This commit is contained in:
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
13
news/inn-current/files/patch-aa
Normal file
13
news/inn-current/files/patch-aa
Normal 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
13
news/inn/files/patch-aa
Normal 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)
|
||||
|
Loading…
Reference in a new issue