Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (9738e90f40b7d6d82e249784a133720b66edcd2b)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (9738e90f40b7d6d82e249784a133720b66edcd2b)
  • Date: Fri, 12 Oct 2007 20:21:30 -0500

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

smgl/smgl-fhs/HISTORY | 3 +++
smgl/smgl-fhs/INSTALL | 7 ++++++-
2 files changed, 9 insertions(+), 1 deletion(-)

New commits:
commit 9738e90f40b7d6d82e249784a133720b66edcd2b
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

smgl-fhs: More fixes to make sure the symlink is not doubled (e.g.
/usr/X11R6/lib/X11/X11)

diff --git a/smgl/smgl-fhs/HISTORY b/smgl/smgl-fhs/HISTORY
index b98669d..616405d 100644
--- a/smgl/smgl-fhs/HISTORY
+++ b/smgl/smgl-fhs/HISTORY
@@ -1,6 +1,9 @@
2007-10-12 Eric Sandall <sandalle AT sourcemage.org>
* INSTALL: Fix symlinks relative to INSTALL_ROOT, otherwise you get
problems with broken symlinks as reported in Bug #13777
+ Need to make the /usr/X11R6/{lib,include} directories to create
+ symlinks under them and the directories we want to symlink to under
+ /usr also need to exist before symlinking

2007-05-06 Thomas Orgis <soukus AT sourcemage.org>
* INSTALL: ensure minimal passwd files with root:root
diff --git a/smgl/smgl-fhs/INSTALL b/smgl/smgl-fhs/INSTALL
index 464b57d..1049fac 100755
--- a/smgl/smgl-fhs/INSTALL
+++ b/smgl/smgl-fhs/INSTALL
@@ -111,9 +111,14 @@ done &&
#
# http://www.pathname.com/fhs/2.2/fhs-4.4.html
#
+for X11_subdir in lib include
+do
+ fhs_mkdir $INSTALL_ROOT/usr/X11R6/$X11_subdir
+done &&
+
for X11_directory in bin lib/X11 include/X11
do
- fhs_mkdir /usr/X11R6/$X11_directory &&
+ fhs_mkdir /usr/$X11_directory &&
pushd $INSTALL_ROOT/ &&
ln -sf $INSTALL_ROOT/usr/$X11_directory \
usr/X11R6/$X11_directory &&



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (9738e90f40b7d6d82e249784a133720b66edcd2b), Eric Sandall, 10/12/2007

Archive powered by MHonArc 2.6.24.

Top of Page