aboutsummaryrefslogtreecommitdiff
path: root/en_US.ISO8859-1/books/porters-handbook
diff options
context:
space:
mode:
authorGregory Sutter <gsutter@FreeBSD.org>2000-02-17 07:23:57 +0000
committerGregory Sutter <gsutter@FreeBSD.org>2000-02-17 07:23:57 +0000
commitdbd491d1ddf593638680e2711ee34aa3de7fe0f4 (patch)
tree3b0aec680ed28aa80fa862b80030195ebbd1b334 /en_US.ISO8859-1/books/porters-handbook
parentab41be988cc67c58323f74837a4feb0fed5e1e28 (diff)
downloaddoc-dbd491d1ddf593638680e2711ee34aa3de7fe0f4.tar.gz
doc-dbd491d1ddf593638680e2711ee34aa3de7fe0f4.zip
repair inverted condition in example
insert the space in "@dirrm " to substitution PR: 16773 Submitted by: Jason Evans <jasone@canonware.com>
Notes
Notes: svn path=/head/; revision=6541
Diffstat (limited to 'en_US.ISO8859-1/books/porters-handbook')
-rw-r--r--en_US.ISO8859-1/books/porters-handbook/book.sgml6
1 files changed, 3 insertions, 3 deletions
diff --git a/en_US.ISO8859-1/books/porters-handbook/book.sgml b/en_US.ISO8859-1/books/porters-handbook/book.sgml
index 96e366ec3c..7570cd938b 100644
--- a/en_US.ISO8859-1/books/porters-handbook/book.sgml
+++ b/en_US.ISO8859-1/books/porters-handbook/book.sgml
@@ -1,7 +1,7 @@
<!--
The FreeBSD Documentation Project
- $FreeBSD: doc/en_US.ISO_8859-1/books/handbook/ports/chapter.sgml,v 1.81 2000/02/15 22:24:46 asami Exp $
+ $FreeBSD: doc/en_US.ISO_8859-1/books/handbook/ports/chapter.sgml,v 1.82 2000/02/17 03:14:02 jim Exp $
-->
<chapter id="ports">
@@ -4100,7 +4100,7 @@ pre-install:
<para>Store the directory structure in a new file.</para>
- <screen>&prompt.root; <userinput>(cd /var/tmp/<replaceable>port-name</replaceable> && find * \! -type d) &gt; OLD-DIRS</userinput></screen>
+ <screen>&prompt.root; <userinput>(cd /var/tmp/<replaceable>port-name</replaceable> && find * -type d) &gt; OLD-DIRS</userinput></screen>
<para>If your port honours <makevar>PREFIX</makevar> (which it should)
you can then install the port and create the package list.</para>
@@ -4111,7 +4111,7 @@ pre-install:
<para>You must also add any newly created directories to the packing
list.</para>
- <screen>&prompt.root; <userinput>(cd /var/tmp/<replaceable>port-name && find * -type d) | comm -13 OLD-DIRS - | sed -e 's#^#@dirrm#' &gt;&gt; pkg/PLIST</replaceable></userinput></screen>
+ <screen>&prompt.root; <userinput>(cd /var/tmp/<replaceable>port-name && find * -type d) | comm -13 OLD-DIRS - | sed -e 's#^#@dirrm #' &gt;&gt; pkg/PLIST</replaceable></userinput></screen>
<para>Finally, you need to tidy up the packing list by hand. I lied
when I said this was all automated. Manual pages should be listed in