summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorrillig <rillig>2006-05-23 09:09:13 +0000
committerrillig <rillig>2006-05-23 09:09:13 +0000
commit9233bdb4dae110867b2a85337a6bce459082320d (patch)
treef462141cc7fa37155fcc3dcd1012d6e9eebbf121 /doc
parent8e59de34cee509a057f23524847d43b4801c99f6 (diff)
downloadpkgsrc-9233bdb4dae110867b2a85337a6bce459082320d.tar.gz
_FETCH_MESSAGE has been replaced with FETCH_MESSAGE.
Diffstat (limited to 'doc')
-rw-r--r--doc/guide/files/fixes.xml18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/guide/files/fixes.xml b/doc/guide/files/fixes.xml
index 716dd7d5a37..116d563d598 100644
--- a/doc/guide/files/fixes.xml
+++ b/doc/guide/files/fixes.xml
@@ -1,4 +1,4 @@
-<!-- $NetBSD: fixes.xml,v 1.52 2006/05/10 22:43:15 rillig Exp $ -->
+<!-- $NetBSD: fixes.xml,v 1.53 2006/05/23 09:09:13 rillig Exp $ -->
<chapter id="fixes"> <?dbhtml filename="fixes.html"?>
<title>Making your package work</title>
@@ -478,14 +478,14 @@
<para>If the download can't be automated, because the user must
submit personal information to apply for a password, or must pay
for the source, or whatever, you can set
- <varname>_FETCH_MESSAGE</varname> to a macro which displays a
- message explaining the situation.
- <varname>_FETCH_MESSAGE</varname> must be executable shell
- commands, not just a message. (Generally, it executes
- <varname>${ECHO}</varname>). See one of the following packages
- for an example:
- <filename role="pkg">fonts/acroread-jpnfont</filename>,
- <filename role="pkg">sysutils/storage-manager</filename>.</para>
+ <varname>FETCH_MESSAGE</varname> to a list of lines that are
+ displayed to the user before aborting the build. Example:</para>
+
+<programlisting>
+ FETCH_MESSAGE= "Please download the files"
+ FETCH_MESSAGE+= " "${DISTFILES:Q}
+ FETCH_MESSAGE+= "manually from "${MASTER_SITES:Q}"."
+</programlisting>
</sect2>