aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2020-02-18 16:05:42 +0100
committerUlrich Müller <ulm@gentoo.org>2020-02-18 16:05:42 +0100
commit02a6c2a31a74d492d4df38947341dea6636a5a82 (patch)
treeaee583cd33b654c1f98fb7e3051cdf74a68964c2 /general-concepts/dependencies/text.xml
parentquickstart: Remove unnecessary escaping of quotes. (diff)
downloaddevmanual-02a6c2a31a74d492d4df38947341dea6636a5a82.tar.gz
devmanual-02a6c2a31a74d492d4df38947341dea6636a5a82.tar.bz2
devmanual-02a6c2a31a74d492d4df38947341dea6636a5a82.zip
Replace ">" by "&gt;" throughout.
Most instances are already being escaped, so convert the few remaining ones for consistency throughout the document. Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'general-concepts/dependencies/text.xml')
-rw-r--r--general-concepts/dependencies/text.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/general-concepts/dependencies/text.xml b/general-concepts/dependencies/text.xml
index ff198fb..1a1d970 100644
--- a/general-concepts/dependencies/text.xml
+++ b/general-concepts/dependencies/text.xml
@@ -171,7 +171,7 @@ should be specified. A simple example:
</p>
<codesample lang="ebuild">
-DEPEND=">=dev-libs/openssl-0.9.7d"
+DEPEND="&gt;=dev-libs/openssl-0.9.7d"
</codesample>
<p>
@@ -193,11 +193,11 @@ Available version specifiers are:
<th>Meaning</th>
</tr>
<tr>
- <ti><c>>=app-misc/foo-1.23</c></ti>
+ <ti><c>&gt;=app-misc/foo-1.23</c></ti>
<ti>Version 1.23 or later is required.</ti>
</tr>
<tr>
- <ti><c>>app-misc/foo-1.23</c></ti>
+ <ti><c>&gt;app-misc/foo-1.23</c></ti>
<ti>A version strictly later than 1.23 is required.</ti>
</tr>
<tr>
@@ -366,7 +366,7 @@ To depend on a specific version or version-range within a SLOT we use:
<codesample lang="ebuild">
DEPEND="qt3? ( ~x11-libs/qt-3.3.8:3 )
- gtk? ( >=x11-libs/gtk+-2.24.9:2 )
+ gtk? ( &gt;=x11-libs/gtk+-2.24.9:2 )
</codesample>
</body>
@@ -453,12 +453,12 @@ DEPEND="!build? (
x11-libs/libXtst
x11-proto/xproto
x11-proto/xextproto
- >=x11-libs/gtk+-2.2
+ &gt;=x11-libs/gtk+-2.2
x11-libs/pango
)
- >=media-libs/libart_lgpl-2.1
+ &gt;=media-libs/libart_lgpl-2.1
)
- >=sys-libs/ncurses-5.2-r2
+ &gt;=sys-libs/ncurses-5.2-r2
nls? ( sys-devel/gettext )
)"
</codesample>