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
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.