diff options
author | Ulrich Müller <ulm@gentoo.org> | 2020-02-16 16:22:17 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2020-02-16 16:22:17 +0100 |
commit | ea4837efc22d538eff82af74244333c220c11a21 (patch) | |
tree | b929e6be0b93458e3d413f6ec586527bdcbc13b3 /eclass-writing | |
parent | devbook.xsl: Remove spurious line break in list. (diff) | |
download | devmanual-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.xml | 4 |
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=">=sys-devel/jmake-2" # @FUNCTION: jmake-configure # @USAGE: [additional-args] # @DESCRIPTION: -# Passes all arguments through to the appropriate "jmake configure" +# 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 "jmake build" command. +# to the appropriate "jmake build" command. jmake-build() { jmake dep && jmake build "$@" } |