diff options
Diffstat (limited to 'doc/guide/files/binary.xml')
-rw-r--r-- | doc/guide/files/binary.xml | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/doc/guide/files/binary.xml b/doc/guide/files/binary.xml index d9a76cd8c51..9a59d683fc5 100644 --- a/doc/guide/files/binary.xml +++ b/doc/guide/files/binary.xml @@ -1,4 +1,4 @@ -<!-- $NetBSD: binary.xml,v 1.31 2007/05/23 12:36:56 rillig Exp $ --> +<!-- $NetBSD: binary.xml,v 1.32 2007/06/01 11:07:24 rillig Exp $ --> <chapter id="binary"> <title>Creating binary packages</title> @@ -85,16 +85,16 @@ As used in this example, <varname>_ACCEPTABLE=yes</varname> accepts <emphasis>all</emphasis> licenses.</para> - <programlisting> - PACKAGES?= ${_PKGSRCDIR}/packages/${MACHINE_ARCH} - WRKOBJDIR?= /usr/tmp/pkgsrc # build here instead of in pkgsrc - BSDSRCDIR= /usr/src - BSDXSRCDIR= /usr/xsrc # for x11/xservers - OBJHOSTNAME?= yes # use work.`hostname` - FAILOVER_FETCH= yes # insist on the correct checksum - PKG_DEVELOPER?= yes - _ACCEPTABLE= yes - </programlisting> +<programlisting> +PACKAGES?= ${_PKGSRCDIR}/packages/${MACHINE_ARCH} +WRKOBJDIR?= /usr/tmp/pkgsrc # build here instead of in pkgsrc +BSDSRCDIR= /usr/src +BSDXSRCDIR= /usr/xsrc # for x11/xservers +OBJHOSTNAME?= yes # use work.`hostname` +FAILOVER_FETCH= yes # insist on the correct checksum +PKG_DEVELOPER?= yes +_ACCEPTABLE= yes +</programlisting> <para>Some options that are especially useful for bulk builds can be found at the top lines of the file @@ -194,12 +194,12 @@ version of ssh for some reason, be sure to install ssh before starting it from <filename>rc.local</filename>:</para> - <programlisting> - ( cd /usr/pkgsrc/security/ssh ; make bulk-install ) - if [ -f /usr/pkg/etc/rc.d/sshd ]; then - /usr/pkg/etc/rc.d/sshd - fi - </programlisting> +<programlisting> +(cd /usr/pkgsrc/security/ssh && make bulk-install) +if [ -f /usr/pkg/etc/rc.d/sshd ]; then + /usr/pkg/etc/rc.d/sshd +fi +</programlisting> <para>Not doing so will result in you being not able to log in via ssh after the bulk build is finished or if the machine |