summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2023-03-23 17:40:11 +0100
committerUlrich Müller <ulm@gentoo.org>2023-03-26 13:33:58 +0200
commit1abf14a79d0344c6e40fea6c9ce6ecea55c8462a (patch)
tree7d3f5f20d8b6c00edf768cc467e05aaf9960c888 /eclass
parentunpacker.eclass: Quote argument of ":" command (diff)
downloadgentoo-1abf14a79d0344c6e40fea6c9ce6ecea55c8462a.tar.gz
gentoo-1abf14a79d0344c6e40fea6c9ce6ecea55c8462a.tar.bz2
gentoo-1abf14a79d0344c6e40fea6c9ce6ecea55c8462a.zip
vala.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')
-rw-r--r--eclass/vala.eclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/vala.eclass b/eclass/vala.eclass
index 20bf00ebd8bc..11f8e52f92dd 100644
--- a/eclass/vala.eclass
+++ b/eclass/vala.eclass
@@ -167,7 +167,7 @@ vala_setup() {
fi
done
done
- : ${PKG_CONFIG_PATH:="${EPREFIX}/usr/$(get_libdir)/pkgconfig:${EPREFIX}/usr/share/pkgconfig"}
+ : "${PKG_CONFIG_PATH:="${EPREFIX}/usr/$(get_libdir)/pkgconfig:${EPREFIX}/usr/share/pkgconfig"}"
export PKG_CONFIG_PATH="${T}/pkgconfig:${PKG_CONFIG_PATH}"
}