Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Justin Boffemmyer (c4481795627d143da531e5a7eb0a90646d2078e9)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Justin Boffemmyer <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Justin Boffemmyer (c4481795627d143da531e5a7eb0a90646d2078e9)
  • Date: Sun, 9 Jul 2023 03:29:49 +0000

GIT changes to master grimoire by Justin Boffemmyer <flux AT sourcemage.org>:

net/network-manager/DEPENDS | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit c4481795627d143da531e5a7eb0a90646d2078e9
Author: Justin Boffemmyer <flux AT sourcemage.org>
Commit: Justin Boffemmyer <flux AT sourcemage.org>

net/network-manager: correct typo and add quotes

Correct a typo on line 129 where the '$' was missing from the
CONNECTION_CHECK variable parameter substitution. Thanks Vlad for
pointing out this miss.

I also added some missing quotes around existing variable usages.

diff --git a/net/network-manager/DEPENDS b/net/network-manager/DEPENDS
index 82c1f1e..ce68ecf 100755
--- a/net/network-manager/DEPENDS
+++ b/net/network-manager/DEPENDS
@@ -1,4 +1,4 @@
-source $GRIMOIRE/MESON_DEPENDS &&
+source "$GRIMOIRE/MESON_DEPENDS" &&

depends dbus &&
depends dbus-glib &&
@@ -115,8 +115,8 @@ fi &&

optional_depends vala vapi={true,false} 'Build api docs'

-if is_depends_enabled $SPELL vala ||
- is_depends_enabled $SPELL gtk-doc ||
+if is_depends_enabled "$SPELL" vala ||
+ is_depends_enabled "$SPELL" gtk-doc ||
"${NM_DOCS#*=}" ;then
depends gobject-introspection introspection=true &&
depends pygobject3
@@ -126,7 +126,7 @@ if ! is_depends_enabled "$SPELL" gobject-introspection
;then
optional_depends gobject-introspection introspection={true,false} "Enable
introspection support"
fi &&

-if "{CONNECTION_CHECK##*=}" ;then
+if "${CONNECTION_CHECK##*=}" ;then
runtime_depends curl
fi &&




  • [SM-Commit] GIT changes to master grimoire by Justin Boffemmyer (c4481795627d143da531e5a7eb0a90646d2078e9), Justin Boffemmyer, 07/08/2023

Archive powered by MHonArc 2.6.24.

Top of Page