aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Yamin <plasmaroo@gentoo.org>2006-07-16 21:02:19 +0000
committerTim Yamin <plasmaroo@gentoo.org>2006-07-16 21:02:19 +0000
commitaf79d9ced10aadea45604ab2aa6d133e12579fce (patch)
tree93663f6a2586a340c0a9114b1c1b92c0f38b7ff1 /quickstart/text.xml
parentFix #140483. (diff)
downloaddevmanual-af79d9ced10aadea45604ab2aa6d133e12579fce.tar.gz
devmanual-af79d9ced10aadea45604ab2aa6d133e12579fce.tar.bz2
devmanual-af79d9ced10aadea45604ab2aa6d133e12579fce.zip
make install -> emake install.
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/devmanual/trunk@68 176d3534-300d-0410-8db8-84e73ed771c3
Diffstat (limited to 'quickstart/text.xml')
-rw-r--r--quickstart/text.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/quickstart/text.xml b/quickstart/text.xml
index 7b8f961..ff6bd48 100644
--- a/quickstart/text.xml
+++ b/quickstart/text.xml
@@ -53,7 +53,7 @@ src_compile() {
}
src_install() {
- make DESTDIR="${D}" install || die "install failed"
+ emake DESTDIR="${D}" install || die "install failed"
dodoc FAQ NEWS README
dohtml EXTENDING.html ctags.html
@@ -152,7 +152,7 @@ for errors using the <c>|| die</c> construct.
</p>
<note>
-The canonical install method is <c>make DESTDIR=&quot;${D}&quot;
+The canonical install method is <c>emake DESTDIR=&quot;${D}&quot;
install</c>. This will work with any properly written standard
<c>Makefile</c>. If this gives sandbox errors, try <c>einstall</c>
instead. If this still fails, see <uri
@@ -219,7 +219,7 @@ src_compile() {
}
src_install() {
- make DESTDIR="${D}" install || die "install failed"
+ emake DESTDIR="${D}" install || die "install failed"
dodoc README CHANGES
}
</codesample>
@@ -293,7 +293,7 @@ src_compile() {
}
src_install() {
- make DESTDIR="${D}" install || die "install failed"
+ emake DESTDIR="${D}" install || die "install failed"
dodoc README CHANGES
}
</codesample>
@@ -341,7 +341,7 @@ src_compile() {
}
src_install() {
- make DESTDIR="${D}" install || die "install failed"
+ emake DESTDIR="${D}" install || die "install failed"
}
</codesample>