Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master sorcery by Ismael Luceno (59598eb3a39870d86c36e2a9a14203824f50f8aa)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master sorcery by Ismael Luceno (59598eb3a39870d86c36e2a9a14203824f50f8aa)
  • Date: Wed, 4 Sep 2019 21:23:18 +0000

GIT changes to master sorcery by Ismael Luceno <ismael AT sourcemage.org>:

ChangeLog | 3 +++
install | 4 +++-
2 files changed, 6 insertions(+), 1 deletion(-)

New commits:
commit 59598eb3a39870d86c36e2a9a14203824f50f8aa
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

install: Fix running from outside the source directory

diff --git a/ChangeLog b/ChangeLog
index a6f3fda..44e8219 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2019-09-04 Ismael Luceno <ismael AT sourcemage.org>
+ * install: Fixed running from outside the source directory
+
2019-08-18 Ismael Luceno <ismael AT sourcemage.org>
* sorcery, libsorcery: Added nosepcode link-time optimization
* install: Removed install__find_for_log
diff --git a/install b/install
index 93135a2..526a858 100755
--- a/install
+++ b/install
@@ -1,4 +1,7 @@
#!/bin/bash
+INSTALL_ROOT="$(readlink -f "$1")"
+d="$(readlink -f "${0%/*}")"
+cd "$d" || exit

. ./var/lib/sorcery/modules/liboscompat

@@ -11,7 +14,6 @@ install__find_non_volatile() {
\! -type d
}

-INSTALL_ROOT="$1"
# First clean out all libraries.
echo "Cleaning out all old sorcery libraries..."
SORCERY_LIBS=${INSTALL_ROOT}/var/lib/sorcery/modules



  • [SM-Commit] GIT changes to master sorcery by Ismael Luceno (59598eb3a39870d86c36e2a9a14203824f50f8aa), Ismael Luceno, 09/04/2019

Archive powered by MHonArc 2.6.24.

Top of Page