看板 DFBSD_bugs 關於我們 聯絡資訊
Jansen Gotis wrote: > I'm also getting the same error trying to build xorg-libraries, but > at a different part of the make install: > > <snip> > install in nls/XI18N_OBJS done > install in programs/Xserver/include done > /usr/bin/install -c -m 0644 libxf86config.a /usr/X11R6/lib > ranlib /usr/X11R6/lib/libxf86config.a > + /usr/bin/install -c -m 0444 xf86Parser.h /usr/X11R6/include > + /usr/bin/install -c -m 0444 xf86Optrec.h /usr/X11R6/include > install in programs/Xserver/hw/xfree86/parser done > /usr/X11R6/lib/X11/doc/html:Permission denied > *** Error code 1 > > I'm running DragonFly-current cvsupped from allbsd.org Jan 3 > around 14:30 GMT+8 with ports and dfports cvsupped around the > same time. > > Imake-6 built and installed fine without problems; my imake version > is 6.8.1. > > What I've tried: > rm -rf'ing /usr/X11R6/lib/X11/doc > rm -rf'ing /usr/X11R6/lib/X11/doc/html > removing the html_index targets in > ${WORKDIR}/xc/programs/Xserver/include/Makefile and > ${WORKDIR}/xc/programs/Xserver/hw/xfree86/parser/Makefile > > I tried the last one because it looked like there was some writing > action going on there. The above three things didn't work. A Google > search didn't help, either. > > The permissions and ownership are correct, and I was doing > this as root. > > I don't know what else to try. Suggestions are very welcome. Thanks. > > > Jansen The problem is that mkhtmlindex is not defined anywhere but used here. It is included from x11-server/xorg-server/Makefile.inc. Simply replace {MKHTMLINDEX} with mkhtmlindex and it will work. Roland