diff options
author | Sam James <sam@gentoo.org> | 2021-04-02 10:47:53 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-03 16:43:12 +0100 |
commit | 7a3f030ed7d7a187a5197ec45416f2870cef5f69 (patch) | |
tree | fe837414259bcf4c48a8e1535a39964c9c53a557 /eclass | |
parent | dev-vcs/notify-webhook: fix variable references (diff) | |
download | gentoo-7a3f030ed7d7a187a5197ec45416f2870cef5f69.tar.gz gentoo-7a3f030ed7d7a187a5197ec45416f2870cef5f69.tar.bz2 gentoo-7a3f030ed7d7a187a5197ec45416f2870cef5f69.zip |
eclass/mate-desktop.org.eclass: fix variable references
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mate-desktop.org.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/mate-desktop.org.eclass b/eclass/mate-desktop.org.eclass index 418f3f8ce076..849479d048f0 100644 --- a/eclass/mate-desktop.org.eclass +++ b/eclass/mate-desktop.org.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: mate-desktop.org.eclass @@ -35,13 +35,13 @@ inherit versionator # @DESCRIPTION: # Name of the package as hosted on mate-desktop.org. # Leave unset if package name matches PN. -: ${MATE_DESKTOP_ORG_PN:=$PN} +: ${MATE_DESKTOP_ORG_PN:=${PN}} # @ECLASS-VARIABLE: MATE_DESKTOP_ORG_PV # @DESCRIPTION: # Package version string as listed on mate-desktop.org. # Leave unset if package version string matches PV. -: ${MATE_DESKTOP_ORG_PV:=$PV} +: ${MATE_DESKTOP_ORG_PV:=${PV}} # @ECLASS-VARIABLE: MATE_BRANCH # @DESCRIPTION: |