diff options
author | Ulrich Müller <ulm@gentoo.org> | 2023-03-23 17:39:29 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2023-03-26 13:33:32 +0200 |
commit | 5fcb01cf4593ec165a021bc526d7c11fb9111c18 (patch) | |
tree | 4741758663f4ca7adcf6520ebcd62df1f9d8d9a1 /eclass/dune.eclass | |
parent | docs.eclass: Quote argument of ":" command (diff) | |
download | gentoo-5fcb01cf4593ec165a021bc526d7c11fb9111c18.tar.gz gentoo-5fcb01cf4593ec165a021bc526d7c11fb9111c18.tar.bz2 gentoo-5fcb01cf4593ec165a021bc526d7c11fb9111c18.zip |
dune.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/dune.eclass')
-rw-r--r-- | eclass/dune.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/dune.eclass b/eclass/dune.eclass index 655a41be84d6..f0faea007c9f 100644 --- a/eclass/dune.eclass +++ b/eclass/dune.eclass @@ -27,7 +27,7 @@ _DUNE_ECLASS=1 # @DESCRIPTION: # Sets the actual Dune package name, if different from Gentoo package name. # Set before inheriting the eclass. -: ${DUNE_PKG_NAME:=${PN}} +: "${DUNE_PKG_NAME:=${PN}}" inherit edo multiprocessing |