summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorobache <obache@pkgsrc.org>2006-09-09 04:21:30 +0000
committerobache <obache@pkgsrc.org>2006-09-09 04:21:30 +0000
commitb4025ba18be15166177d120648a555d017da1530 (patch)
tree5191f48082d77b5e33bcdfce7623f0abdbdaeff7
parent55c56786b3c520dbb5737d3e8944b6b51034e7bb (diff)
downloadpkgsrc-b4025ba18be15166177d120648a555d017da1530.tar.gz
Rename variable MAKEFILE to MAKE_FILE.
-rw-r--r--doc/guide/files/build.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/guide/files/build.xml b/doc/guide/files/build.xml
index 1ec92c44cea..c23d73ab355 100644
--- a/doc/guide/files/build.xml
+++ b/doc/guide/files/build.xml
@@ -1,4 +1,4 @@
-<!-- $NetBSD: build.xml,v 1.31 2006/07/30 00:30:55 wiz Exp $ -->
+<!-- $NetBSD: build.xml,v 1.32 2006/09/09 04:21:30 obache Exp $ -->
<chapter id="build">
<title>The build process</title>
@@ -540,7 +540,7 @@ is executed.</para>
.for d in ${BUILD_DIRS}
cd ${WRKSRC} && cd ${d} && env ${MAKE_ENV} \
${MAKE_PROGRAM} ${BUILD_MAKE_FLAGS} \
- -f ${MAKEFILE} ${BUILD_TARGET}
+ -f ${MAKE_FILE} ${BUILD_TARGET}
.endfor
</programlisting>
@@ -550,13 +550,13 @@ these directories, <varname>MAKE_PROGRAM</varname> is run with the
environment <varname>MAKE_ENV</varname> and arguments
<varname>BUILD_MAKE_FLAGS</varname>. The variables
<varname>MAKE_ENV</varname>, <varname>BUILD_MAKE_FLAGS</varname>,
-<varname>MAKEFILE</varname> and <varname>BUILD_TARGET</varname> may all
+<varname>MAKE_FILE</varname> and <varname>BUILD_TARGET</varname> may all
be changed by the package.</para>
<para>The default value of <varname>MAKE_PROGRAM</varname> is
<quote>gmake</quote> if <varname>USE_TOOLS</varname> contains
<quote>gmake</quote>, <quote>make</quote> otherwise. The default value
-of <varname>MAKEFILE</varname> is <quote>Makefile</quote>, and
+of <varname>MAKE_FILE</varname> is <quote>Makefile</quote>, and
<varname>BUILD_TARGET</varname> defaults to <quote>all</quote>.</para>
</sect1>
@@ -584,7 +584,7 @@ of <varname>MAKEFILE</varname> is <quote>Makefile</quote>, and
.for d in ${INSTALL_DIRS}
cd ${WRKSRC} && cd ${d} && env ${MAKE_ENV} \
${MAKE_PROGRAM} ${INSTALL_MAKE_FLAGS} \
- -f ${MAKEFILE} ${BUILD_TARGET}
+ -f ${MAKE_FILE} ${BUILD_TARGET}
.endfor
</programlisting>