diff options
author | Ulrich Müller <ulm@gentoo.org> | 2023-03-23 17:39:35 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2023-03-26 13:33:36 +0200 |
commit | 69d9a525c5f776ed4dad8dadb10e24b2fd29806d (patch) | |
tree | 3067abf9adadee0eefef2d5457f03c4d5e958394 /eclass/gnome2-utils.eclass | |
parent | gnome.org.eclass: Quote argument of ":" command (diff) | |
download | gentoo-69d9a525c5f776ed4dad8dadb10e24b2fd29806d.tar.gz gentoo-69d9a525c5f776ed4dad8dadb10e24b2fd29806d.tar.bz2 gentoo-69d9a525c5f776ed4dad8dadb10e24b2fd29806d.zip |
gnome2-utils.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/gnome2-utils.eclass')
-rw-r--r-- | eclass/gnome2-utils.eclass | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/eclass/gnome2-utils.eclass b/eclass/gnome2-utils.eclass index 4bbbdc82dae7..0e9a91db07fb 100644 --- a/eclass/gnome2-utils.eclass +++ b/eclass/gnome2-utils.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: gnome2-utils.eclass @@ -29,29 +29,29 @@ esac # @INTERNAL # @DESCRIPTION: # Path to gconftool-2 -: ${GCONFTOOL_BIN:="/usr/bin/gconftool-2"} +: "${GCONFTOOL_BIN:="/usr/bin/gconftool-2"}" # @ECLASS_VARIABLE: SCROLLKEEPER_DIR # @INTERNAL # @DESCRIPTION: # Directory where scrollkeeper-update should do its work -: ${SCROLLKEEPER_DIR:="/var/lib/scrollkeeper"} +: "${SCROLLKEEPER_DIR:="/var/lib/scrollkeeper"}" # @ECLASS_VARIABLE: SCROLLKEEPER_UPDATE_BIN # @INTERNAL # @DESCRIPTION: # Path to scrollkeeper-update -: ${SCROLLKEEPER_UPDATE_BIN:="/usr/bin/scrollkeeper-update"} +: "${SCROLLKEEPER_UPDATE_BIN:="/usr/bin/scrollkeeper-update"}" # @ECLASS_VARIABLE: GLIB_COMPILE_RESOURCES # @DESCRIPTION: # Path to glib-compile-resources -: ${GLIB_COMPILE_RESOURCES:="/usr/bin/glib-compile-resources"} +: "${GLIB_COMPILE_RESOURCES:="/usr/bin/glib-compile-resources"}" # @ECLASS_VARIABLE: GLIB_COMPILE_SCHEMAS # @DESCRIPTION: # Path to glib-compile-schemas -: ${GLIB_COMPILE_SCHEMAS:="/usr/bin/glib-compile-schemas"} +: "${GLIB_COMPILE_SCHEMAS:="/usr/bin/glib-compile-schemas"}" # @ECLASS_VARIABLE: GNOME2_ECLASS_SCHEMAS # @INTERNAL |