Bug 34143

Summary: Recursive chmod breaks install of /usr/ports/www/apache13-modssl/
Product: Ports & Packages Reporter: Peter Radavich <peter>
Component: Individual Port(s)Assignee: freebsd-ports (Nobody) <ports>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
file.diff none

Description Peter Radavich 2002-01-22 01:40:00 UTC
	The apache Makefile for /usr/ports/www/apache13-modssl/ does a recursive chmod using find and xargs on:
	
Copying tree ./htdocs/ -> /usr/local/www/data.default/
echo "Copying tree ./htdocs/manual -> //usr/local/share/doc/apache/";  (cd ./htdocs/manual/ && /usr/local/bin/gtar -hcf - *) | (cd /usr/local/share/doc/apache/ && /usr/local/bin/gtar -xf -);  find /usr/local/share/doc/apache/ -type d -exec chmod a+rx {} \; ;  find /usr/local/share/doc/apache/ -type f -print | xargs chmod a+r ;  #        fi
Copying tree ./htdocs/manual -> //usr/local/share/doc/apache/
xargs: unterminated quote
*** Error code 1

This was using a cvsup of ports from: Mon Jan 21 17:15:25 PST 2002

Looks like it'd be better to use find -print0 and xargs -0 here.

How-To-Repeat: 
# cd /usr/ports/www/apache13-modssl
# make all
# make certificate
# make install
Comment 1 FUJISHIMA Satsuki freebsd_committer freebsd_triage 2002-01-22 22:29:32 UTC
State Changed
From-To: open->closed

Your problem is not a port problem directly, but seems harmless. 
So I added it as perl replacement to Makefile. Thanks.