summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2023-03-23 17:40:18 +0100
committerUlrich Müller <ulm@gentoo.org>2023-03-26 13:34:03 +0200
commit57a0887ab4f6f4d25e8aea5aa3434f75b5a3f349 (patch)
tree726841d795147152a8f5bb49be4b1c9954ddacbe /eclass/xemacs-packages.eclass
parentxdg-utils.eclass: Quote argument of ":" command (diff)
downloadgentoo-57a0887ab4f6f4d25e8aea5aa3434f75b5a3f349.tar.gz
gentoo-57a0887ab4f6f4d25e8aea5aa3434f75b5a3f349.tar.bz2
gentoo-57a0887ab4f6f4d25e8aea5aa3434f75b5a3f349.zip
xemacs-packages.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/xemacs-packages.eclass')
-rw-r--r--eclass/xemacs-packages.eclass10
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/xemacs-packages.eclass b/eclass/xemacs-packages.eclass
index 648f5146f47e..ca60e0c3b3b7 100644
--- a/eclass/xemacs-packages.eclass
+++ b/eclass/xemacs-packages.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: xemacs-packages.eclass
@@ -35,13 +35,13 @@ _XEMACS_PACKAGES_ECLASS=1
RDEPEND="app-editors/xemacs"
S="${WORKDIR}"
-: ${HOMEPAGE:="http://xemacs.org/"}
-: ${LICENSE:="GPL-2+"}
+: "${HOMEPAGE:="http://xemacs.org/"}"
+: "${LICENSE:="GPL-2+"}"
if [[ -n ${XEMACS_EXPERIMENTAL} ]]; then
- : ${SRC_URI:="http://ftp.xemacs.org/pub/xemacs/beta/experimental/packages/${P}-pkg.tar.gz"}
+ : "${SRC_URI:="http://ftp.xemacs.org/pub/xemacs/beta/experimental/packages/${P}-pkg.tar.gz"}"
else
- : ${SRC_URI:="http://ftp.xemacs.org/pub/xemacs/packages/${P}-pkg.tar.gz"}
+ : "${SRC_URI:="http://ftp.xemacs.org/pub/xemacs/packages/${P}-pkg.tar.gz"}"
fi
xemacs-packages_src_unpack() { :; }