| Summary: | [patch] fdp-primer: instructions on building web site don't work | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Documentation | Reporter: | Lowell Gilbert <freebsd-bugs-local> | ||||
| Component: | Books & Articles | Assignee: | Pav Lucistnik <pav> | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Only Me | ||||||
| Priority: | Normal | ||||||
| Version: | Latest | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
State Changed From-To: open->feedback Are you sure about the DESTDIR change? The old way works fine for me. Responsible Changed From-To: freebsd-doc->pav Poke State Changed From-To: feedback->closed Feedback timeout |
I ran into some trouble building the website according to the FDP instructions. These changes solve the problem. (Maybe the setting for DESTDIR should be moved to the "environment variables" section, but I wasn't sure.) How-To-Repeat: builddir=/usr/scratch/lowell/webbuild mkdir -p $builddir cd $builddir || exit 1 if ! cvs -d /usr/scratch/scratch/ncvs -R co www doc ; then exit 1 fi echo cvsup okay cd {$builddir}/www/en || exit 1 ENGLISH_ONLY=yes export ENGLISH_ONLY OPENJADE="yes" export OPENJADE make all || exit echo built okay cd {$builddir}/www/en || exit 1 make DESTDIR=/usr/scratch/scratch/FreeBSD-Web-site install || exit 1 echo installed okay