Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (f5aaec3e15bbd63e6b21454982a5f353755f2fb6)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (f5aaec3e15bbd63e6b21454982a5f353755f2fb6)
  • Date: Wed, 22 Apr 2015 04:00:33 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

ChangeLog | 3 ++-
FUNCTIONS | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)

New commits:
commit f5aaec3e15bbd63e6b21454982a5f353755f2fb6
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

do not force noexec option in check_tmp_noexec()

diff --git a/ChangeLog b/ChangeLog
index 377fc60..77e4d30 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
2015-04-22 Vlad Glagolev <stealth AT sourcemage.org>
- * FUNCTIONS: fixed check_tmp_noexec for tmp-less systems
+ * FUNCTIONS: fixed check_tmp_noexec for tmp-less systems, do not force
+ noexec option

2015-04-19 Treeve Jelbert <treeve AT sourcemage.org>
* xorg-lib/libxpresent: new spell,
diff --git a/FUNCTIONS b/FUNCTIONS
index 261eb7a..179b05a 100755
--- a/FUNCTIONS
+++ b/FUNCTIONS
@@ -730,7 +730,7 @@ function check_tmp_noexec() {
message -n "${MESSAGE_COLOR}Remounting $1 with exec option (required for
build)... " &&
mount -o exec,remount $1 &&
message "done${DEFAULT_COLOR}"
- else
+ elif awk -v tmp=$1 '{ if ($2 == tmp) print $4 }' < /etc/fstab | grep -q
noexec; then
message -n "${MESSAGE_COLOR}Restoring $1 mount options... " &&
mount -o noexec,remount $1 &&
message "done${DEFAULT_COLOR}"



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (f5aaec3e15bbd63e6b21454982a5f353755f2fb6), Vlad Glagolev, 04/22/2015

Archive powered by MHonArc 2.6.24.

Top of Page