Date: Sat, 9 Dec 2000 15:56:10 +0200 From: Ruslan Ermilov <ru@FreeBSD.ORG> To: debiangnu@hushmail.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Make buildword groff -U ? Message-ID: <20001209155610.C78374@sunbay.com> In-Reply-To: <200012081829.KAA06602@user7.hushmail.com>; from debiangnu@hushmail.com on Sat, Dec 09, 2000 at 08:33:49PM %2B0000 References: <200012081829.KAA06602@user7.hushmail.com>
next in thread | previous in thread | raw e-mail | index | archive | help
--XsQoSWH+UP9D9v3l Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Funny you're asking this question :-) Could you please try the attached patch? On Sat, Dec 09, 2000 at 08:33:49PM +0000, debiangnu@hushmail.com wrote: > I'm upgrading 3.4-release to 4.2 i keep getting this error that follows > , using make buildworld > > > (cd /usr/src/share/doc/usd/13.viref/../../../../contrib/nvi/docs/USD.doc/vi.ref; > sed -e\ 's:\(\.so[\ \ ][\ \ ]*\)\(vi.ref\)$:\1/usr/src/share/doc/usd/13.viref/../../../../contrib/nvi/docs/USD.doc/vi.ref/\2:' > -e\ 's:\(\.so[\ \ ][\ \ ]*\)\(ex.cmd.roff\)$:\1/usr/src/share/doc/usd/13.viref/../../../../contrib/nvi/docs/USD.doc/vi.ref/\2:' > -e\ 's:\(\.so[\ \ ][\ \ ]*\)\(ref.so\)$:\1/usr/src/share/doc/usd/13.viref/../../../../contrib/nvi/docs/USD.doc/vi.ref/\2:' > -e\ 's:\(\.so[\ \ ][\ \ ]*\)\(set.opt.roff\)$:\1/usr/src/share/doc/usd/13.viref/../../../../contrib/nvi/docs/USD.doc/vi.ref/\2:' > -e\ 's:\(\.so[\ \ ][\ \ ]*\)\(vi.cmd.roff\)$:\1/usr/src/share/doc/usd/13.viref/../../../../contrib/nvi/docs/USD.doc/vi.ref/\2:' > -e 's:^\.so index.so$::' vi.ref) | groff -mtty-char -Tascii -t -s -me - > U -o1- > /dev/null > groff: illegal option -- U > usage: groff [-abehilpstvzCENRSVXZ] [-Fdir] [-mname] [-Tdev] [-ffam] [-wname] > [-Wname] [ -Mdir] [-dcs] [-rcn] [-nnum] [-olist] [-Parg] [-Larg] > [files...] > groff -h gives more help > *** Error code 1 > > Stop. > > > Thanks > debiangnu@hushmail.com > -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --XsQoSWH+UP9D9v3l Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=p4 Index: Makefile.inc1 =================================================================== RCS file: /home/ncvs/src/Makefile.inc1,v retrieving revision 1.141.2.18 diff -u -r1.141.2.18 Makefile.inc1 --- Makefile.inc1 2000/12/01 21:58:09 1.141.2.18 +++ Makefile.inc1 2000/12/08 16:02:16 @@ -168,6 +168,7 @@ COMPILER_PATH=${WORLDTMP}/usr/libexec:${WORLDTMP}/usr/bin \ LIBRARY_PATH=${WORLDTMP}${SHLIBDIR}:${WORLDTMP}/usr/lib \ OBJFORMAT_PATH=${WORLDTMP}/usr/libexec \ + TRFLAGS="-F${WORLDTMP}/usr/share/groff_font -M${WORLDTMP}/usr/share/tmac" \ PERL5LIB=${WORLDTMP}/usr/libdata/perl/5.00503 # bootstrap-tool stage @@ -198,16 +199,6 @@ PATH=${STRICTTMPPATH}:${INSTALLTMP} IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1 -USRDIRS= usr/bin usr/lib/compat/aout usr/games usr/libdata/ldscripts \ - usr/libexec/${OBJFORMAT} usr/sbin usr/share/misc - -.if ${MACHINE_ARCH} == "i386" && ${MACHINE} == "pc98" -USRDIRS+= usr/libexec/aout -.endif - -INCDIRS= arpa g++/std objc protocols readline rpc rpcsvc openssl \ - security ss - # # buildworld # @@ -222,7 +213,7 @@ .if !defined(NOCLEAN) rm -rf ${WORLDTMP} .else - for dir in bin games include lib sbin; do \ + for dir in bin games include lib sbin share; do \ rm -rf ${WORLDTMP}/usr/$$dir; \ done rm -f ${WORLDTMP}/sys @@ -230,12 +221,7 @@ # This is beyond dirty... rm -f ${OBJTREE}${.CURDIR}/gnu/usr.bin/cc/cc_tools/.depend .endif -.for _dir in ${USRDIRS} - mkdir -p ${WORLDTMP}/${_dir} -.endfor -.for _dir in ${INCDIRS} - mkdir -p ${WORLDTMP}/usr/include/${_dir} -.endfor + cd ${.CURDIR}; ${BMAKE} hierarchy ln -sf ${.CURDIR}/sys ${WORLDTMP}/sys @echo @echo "--------------------------------------------------------------" @@ -509,7 +495,7 @@ bootstrap-tools: .for _tool in ${_strfile} usr.bin/yacc usr.bin/colldef usr.sbin/config \ - gnu/usr.bin/gperf gnu/usr.bin/texinfo + gnu/usr.bin/gperf gnu/usr.bin/groff gnu/usr.bin/texinfo cd ${.CURDIR}/${_tool}; \ ${MAKE} obj; \ ${MAKE} depend; \ --XsQoSWH+UP9D9v3l-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20001209155610.C78374>