Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (8c26eaee6d5c1f543a0db851ea84455c8f78caf8)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pavel Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (8c26eaee6d5c1f543a0db851ea84455c8f78caf8)
  • Date: Fri, 5 Aug 2022 17:36:37 +0000

GIT changes to master grimoire by Pavel Vinogradov <public AT sourcemaage.org>:

utils/util-linux/HISTORY | 3 +++
utils/util-linux/SUB_DEPENDS | 4 ++--
2 files changed, 5 insertions(+), 2 deletions(-)

New commits:
commit 8c26eaee6d5c1f543a0db851ea84455c8f78caf8
Author: Pavel Vinogradov <public AT sourcemaage.org>
Commit: Pavel Vinogradov <public AT sourcemaage.org>

utils/util-linux: fixed SULOGIN subdep check

diff --git a/utils/util-linux/HISTORY b/utils/util-linux/HISTORY
index b81b8e5..e03dbb4 100644
--- a/utils/util-linux/HISTORY
+++ b/utils/util-linux/HISTORY
@@ -1,3 +1,6 @@
+2022-08-05 Pavel Vinogradov <public AT sourcemage.org>
+ * SUB_DEPENDS: fixed conditionals for SULOGIN
+
2022-08-04 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: version 2.38.1

diff --git a/utils/util-linux/SUB_DEPENDS b/utils/util-linux/SUB_DEPENDS
index 2040367..c40af35 100755
--- a/utils/util-linux/SUB_DEPENDS
+++ b/utils/util-linux/SUB_DEPENDS
@@ -3,11 +3,11 @@ case $THIS_SUB_DEPENDS in
message "Requested AES-patched version of $SPELL, forcing
option UL_VERSION=aes" &&
UL_VERSION=aes
fi;;
- SULOGIN) if [[ $UL_SULOGIN != y ]]; then
+ SULOGIN) if [[ "${UL_SULOGIN}" != "--enable-sulogin" ]]; then
message "Requested $SPELL with sulogin, forcing it" &&
UL_SULOGIN="--enable-sulogin"
fi;;
- NO_SULOGIN) if [[ $UL_SULOGIN != n ]]; then
+ NO_SULOGIN) if [[ "${UL_SULOGIN}" != "--disable-sulogin" ]]; then
message "Requested $SPELL without sulogin, forcefully
disabling it" &&
UL_SULOGIN="--disable-sulogin"
fi;;



  • [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (8c26eaee6d5c1f543a0db851ea84455c8f78caf8), Pavel Vinogradov, 08/05/2022

Archive powered by MHonArc 2.6.24.

Top of Page