diff options
author | des <des@FreeBSD.org> | 2001-03-11 09:06:19 +0800 |
---|---|---|
committer | des <des@FreeBSD.org> | 2001-03-11 09:06:19 +0800 |
commit | 721908a34124c02437be72361234010d635e32bb (patch) | |
tree | e4d642252bbe5c07efcb86e1ce82cea2b1e9d6fc /news | |
parent | 3e7a4a5a5c6a0b1804bd8c8de0194e6a462dff34 (diff) | |
download | freebsd-ports-gnome-721908a34124c02437be72361234010d635e32bb.tar.gz freebsd-ports-gnome-721908a34124c02437be72361234010d635e32bb.tar.zst freebsd-ports-gnome-721908a34124c02437be72361234010d635e32bb.zip |
Avoid chown'ing /usr/local/man/man* to news:news.
Diffstat (limited to 'news')
-rw-r--r-- | news/inn-current/files/patch-aa | 13 | ||||
-rw-r--r-- | news/inn/files/patch-aa | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/news/inn-current/files/patch-aa b/news/inn-current/files/patch-aa new file mode 100644 index 000000000000..cb4a2a9c872f --- /dev/null +++ b/news/inn-current/files/patch-aa @@ -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) + diff --git a/news/inn/files/patch-aa b/news/inn/files/patch-aa new file mode 100644 index 000000000000..cb4a2a9c872f --- /dev/null +++ b/news/inn/files/patch-aa @@ -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) + |