aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2020-02-16 16:22:17 +0100
committerUlrich Müller <ulm@gentoo.org>2020-02-16 16:22:17 +0100
commitea4837efc22d538eff82af74244333c220c11a21 (patch)
treeb929e6be0b93458e3d413f6ec586527bdcbc13b3 /eclass-writing
parentdevbook.xsl: Remove spurious line break in list. (diff)
downloaddevmanual-ea4837efc22d538eff82af74244333c220c11a21.tar.gz
devmanual-ea4837efc22d538eff82af74244333c220c11a21.tar.bz2
devmanual-ea4837efc22d538eff82af74244333c220c11a21.zip
Remove unnecessary escaping of quotes.
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass-writing')
-rw-r--r--eclass-writing/text.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass-writing/text.xml b/eclass-writing/text.xml
index 8656966..d5fcc8d 100644
--- a/eclass-writing/text.xml
+++ b/eclass-writing/text.xml
@@ -718,7 +718,7 @@ DEPEND="&gt;=sys-devel/jmake-2"
# @FUNCTION: jmake-configure
# @USAGE: [additional-args]
# @DESCRIPTION:
-# Passes all arguments through to the appropriate &quot;jmake configure&quot;
+# Passes all arguments through to the appropriate "jmake configure"
# command.
jmake-configure() {
jmake configure --prefix=/usr "$@"
@@ -728,7 +728,7 @@ jmake-configure() {
# @USAGE: [additional-args]
# @DESCRIPTION:
# First builds all dependencies, and then passes through its arguments
-# to the appropriate &quot;jmake build&quot; command.
+# to the appropriate "jmake build" command.
jmake-build() {
jmake dep &amp;&amp; jmake build "$@"
}