diff options
author | roam <roam@FreeBSD.org> | 2004-04-20 16:33:16 +0800 |
---|---|---|
committer | roam <roam@FreeBSD.org> | 2004-04-20 16:33:16 +0800 |
commit | 17b765f6eaf0afca36105f1df18f14550467b829 (patch) | |
tree | 93773974ce8045708459fb4a253ccc697f25e69b /www | |
parent | f759ce55d07f90f4cc6d256a6b1f746d1c907ece (diff) | |
download | freebsd-ports-gnome-17b765f6eaf0afca36105f1df18f14550467b829.tar.gz freebsd-ports-gnome-17b765f6eaf0afca36105f1df18f14550467b829.tar.zst freebsd-ports-gnome-17b765f6eaf0afca36105f1df18f14550467b829.zip |
After Kris pointed out dosirak's dissatisfaction with the way dns/djbdns
changed the permissions on $PREFIX and $PREFIX/bin, fix the same problem
in two other ports of DJB software.
Diffstat (limited to 'www')
-rw-r--r-- | www/publicfile/Makefile | 1 | ||||
-rw-r--r-- | www/publicfile/files/patch-hier.c | 14 |
2 files changed, 15 insertions, 0 deletions
diff --git a/www/publicfile/Makefile b/www/publicfile/Makefile index 0b68c9ca1b23..5e9ce066be84 100644 --- a/www/publicfile/Makefile +++ b/www/publicfile/Makefile @@ -7,6 +7,7 @@ PORTNAME= publicfile PORTVERSION= 0.52 +PORTREVISION= 1 CATEGORIES= www ftp MASTER_SITES= http://cr.yp.to/publicfile/ \ ftp://cr.yp.to/publicfile/ diff --git a/www/publicfile/files/patch-hier.c b/www/publicfile/files/patch-hier.c new file mode 100644 index 000000000000..587e3885207b --- /dev/null +++ b/www/publicfile/files/patch-hier.c @@ -0,0 +1,14 @@ +--- hier.c.orig Tue Apr 20 11:26:00 2004 ++++ hier.c Tue Apr 20 11:26:06 2004 +@@ -2,9 +2,9 @@ + + void hier() + { +- h(auto_home,-1,-1,02755); ++ h(auto_home,-1,-1,0755); + +- d(auto_home,"bin",-1,-1,02755); ++ d(auto_home,"bin",-1,-1,0755); + + c(auto_home,"bin","configure",-1,-1,0755); + c(auto_home,"bin","httpd",-1,-1,0755); |