Skip to Content.
Sympa Menu

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

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 (430ca772ba3c569b68cd858e03e17832b507a8a2)
  • Date: Sun, 24 Feb 2019 00:30:57 +0000

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

ChangeLog | 4 ++++
protect_special_libs | 4 ++--
2 files changed, 6 insertions(+), 2 deletions(-)

New commits:
commit 430ca772ba3c569b68cd858e03e17832b507a8a2
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>

protect_special_libs: backup directory should be autodeleted and not
a possible tmpfs mountpoint

diff --git a/ChangeLog b/ChangeLog
index 2c35fb0..dde90c2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2019-02-23 Pavel Vinogradov <public AT sourcemage.org>
+ * protect_special_libs: backup directory should be autodeleted and not
+ a possible tmpfs mountpoint
+
2019-02-23 Treeve Jelbert <treeve AT sourcemage.org>
* protect_special_libs: tweak

diff --git a/protect_special_libs b/protect_special_libs
index 371b376..f453260 100644
--- a/protect_special_libs
+++ b/protect_special_libs
@@ -4,12 +4,12 @@
# candidate spells for this would be glibc, ncurses, readline

lock_resources "libgrimoire" "install" &&
-PROTECT=$BUILD_DIRECTORY/$SPELL.oldlibs &&
+PROTECT="${SOURCE_DIRECTORY}/${SPELL}.oldlibs" &&

if [[ -z $INSTALL_ROOT ]]; then
protect_special_libs() {
message "${MESSAGE_COLOR}Protecting special libraries${DEFAULT_COLOR}" &&
- mk_source_dir $PROTECT &&
+ mkdir -p "${PROTECT}" &&

local each &&
for each in /lib{,64,32}/*; do



  • [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (430ca772ba3c569b68cd858e03e17832b507a8a2), Pavel Vinogradov, 02/23/2019

Archive powered by MHonArc 2.6.24.

Top of Page