Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/devmanual:master commit in: quickstart/
Date: Sun, 16 Feb 2020 18:05:15
Message-Id: 1581876243.db0e1f3ac599beeeefda1a21d6f2ae507c158c9a.ulm@gentoo
1 commit: db0e1f3ac599beeeefda1a21d6f2ae507c158c9a
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 16 18:04:03 2020 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 16 18:04:03 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=db0e1f3a
7
8 quickstart: Remove unnecessary escaping of quotes.
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 quickstart/text.xml | 15 +++++++--------
13 1 file changed, 7 insertions(+), 8 deletions(-)
14
15 diff --git a/quickstart/text.xml b/quickstart/text.xml
16 index f8e65bb..1655f8d 100644
17 --- a/quickstart/text.xml
18 +++ b/quickstart/text.xml
19 @@ -105,7 +105,7 @@ include the URI scheme, for example <c>https://</c>).
20 <p>
21 The <c>SRC_URI</c> tells Portage the address to use for downloading
22 the source tarball. Here, <c>mirror://sourceforge/</c> is a special
23 -notation meaning &quot;any of the Sourceforge mirrors&quot;.
24 +notation meaning "any of the Sourceforge mirrors".
25 <c>${P}</c> is a read-only variable set by Portage which is the package's
26 name and version <d/> in this case, it would be <c>ctags-5.5.4</c>.
27 </p>
28 @@ -116,8 +116,8 @@ or (at your option) any later version).
29 </p>
30
31 <p>
32 -The <c>SLOT</c> variable tells Portage which slot this package installs to. If
33 -you've not seen slots before, either just use <c>&quot;0&quot;</c> or read
34 +The <c>SLOT</c> variable tells Portage which slot this package installs to.
35 +If you've not seen slots before, either just use <c>"0"</c> or read
36 <uri link="::general-concepts/slotting"/>.
37 </p>
38
39 @@ -152,11 +152,10 @@ this <d/> see <uri link="::general-concepts/install-destinations"/> and
40 </p>
41
42 <note>
43 -The canonical install method is <c>emake DESTDIR=&quot;${D}&quot;
44 -install</c>. This will work with any properly written standard
45 -<c>Makefile</c>. If this gives sandbox errors, see <uri
46 -link="::ebuild-writing/functions/src_install/"/> for how to do manual
47 -installs.
48 +The canonical install method is <c>emake DESTDIR="${D}" install</c>. This will
49 +work with any properly written standard <c>Makefile</c>. If this gives sandbox
50 +errors, see <uri link="::ebuild-writing/functions/src_install/"/> for how to do
51 +manual installs.
52 </note>
53
54 <p>