| Summary: | www/apache13 install fails w/ "xargs: unterminated quote" | ||
|---|---|---|---|
| Product: | Ports & Packages | Reporter: | freebsd |
| Component: | Individual Port(s) | Assignee: | Andrey A. Chernov <ache> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | Latest | ||
| Hardware: | Any | ||
| OS: | Any | ||
Responsible Changed From-To: freebsd-ports->ache Over to maintainer On Fri, Jun 21, 2002 at 19:59:30 -0400, parv@pair.com wrote: > Copying tree ./htdocs/manual -> //usr/local/share/doc/apache/ > xargs: unterminated quote > *** Error code 1 > I can't reproduce that. -- Andrey A. Chernov http://ache.pp.ru/ in message <20020622065116.GA23147@nagual.pp.ru>, wrote Andrey A. Chernov thusly... > > On Fri, Jun 21, 2002 at 19:59:30 -0400, parv@pair.com wrote: > > Copying tree ./htdocs/manual -> //usr/local/share/doc/apache/ > > xargs: unterminated quote > > *** Error code 1 > > > > I can't reproduce that. i can't say why am i able to but you are not (you did try to install right, not just build?). i also tried again after commit of patch-ab (1.25), but install still fails w/ similar message. let me know if want to me try anything else and/or send you something. - parv -- Hi,
I encountered the same problem.
In my case, the cause was the 'jargon' installed in the
/usr/local/share/doc/apache directory. As some 'jargon' files use
single quote in their file names, xarg claimed error.
I suggest executing below
%find /usr/local/share/doc/apache/ -type f -print
and see any file includes single or double quote in their names.
------------------------------------
Tetsu Kimura (tkimura@sm.sony.co.jp)
Sony Corporation
in message <200206240541.OAA79949@rdmail2.sm.sony.co.jp>, wrote tkimura@sm.sony.co.jp thusly... > > I encountered the same problem. In my case, the cause was the > 'jargon' installed in the /usr/local/share/doc/apache directory. > As some 'jargon' files use single quote in their file names, xarg > claimed error. your case was also my case ... jargon problem. after removing its file, apache install went fine. thanks much for the clue tetsu. this pr should be closed now. -- State Changed From-To: open->closed Jargon port problem |
apache13 install fails w/ the following message... ... <=== [include] ===> [data: Installing initial data files] echo "Copying tree ./htdocs/ -> /usr/local/www/data-dist/"; (cd ./htdocs/ && /usr/local/bin/gtar -hcf - index* apache_pb.* ) | (cd /usr/local/www/data-dist/ && /usr/local/bin/gtar -xf -); find /usr/local/www/data-dist/ -type d -exec chmod a+rx {} \; ; find /usr/local/www/data-dist/ -type f -print | xargs chmod a+r ; # fi Copying tree ./htdocs/ -> /usr/local/www/data-dist/ 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 Stop in /source/ports/www/apache13/work/apache_1.3.26. *** Error code 1 How-To-Repeat: try to install www/apache13 port (w/ ports tree updated as shown).