diff options
author | Ulrich Müller <ulm@gentoo.org> | 2023-03-23 17:39:54 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2023-03-26 13:33:47 +0200 |
commit | 35256ae8bbee73676899c1a2921c72ad81a052f7 (patch) | |
tree | f50555cb3beb451386edbc9106cea2740ab9e4aa /eclass/office-ext-r1.eclass | |
parent | ninja-utils.eclass: Quote argument of ":" command (diff) | |
download | gentoo-35256ae8bbee73676899c1a2921c72ad81a052f7.tar.gz gentoo-35256ae8bbee73676899c1a2921c72ad81a052f7.tar.bz2 gentoo-35256ae8bbee73676899c1a2921c72ad81a052f7.zip |
office-ext-r1.eclass: Quote argument of ":" command
This avoids globbing, see: https://www.shellcheck.net/wiki/SC2223
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/office-ext-r1.eclass')
-rw-r--r-- | eclass/office-ext-r1.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/office-ext-r1.eclass b/eclass/office-ext-r1.eclass index abc0cabaa310..716ae001be1d 100644 --- a/eclass/office-ext-r1.eclass +++ b/eclass/office-ext-r1.eclass @@ -68,7 +68,7 @@ fi # @CODE # OFFICE_EXTENSIONS_LOCATION="${S}/unpacked/" # @CODE -: ${OFFICE_EXTENSIONS_LOCATION:=${DISTDIR}} +: "${OFFICE_EXTENSIONS_LOCATION:=${DISTDIR}}" IUSE="" RDEPEND="" |