Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to stable-rc-0.6 grimoire by Eric Sandall (ec753602152464b9d5b52f0a026a3c44896dd078)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to stable-rc-0.6 grimoire by Eric Sandall (ec753602152464b9d5b52f0a026a3c44896dd078)
  • Date: Thu, 4 Jan 2007 18:29:00 -0600

GIT changes to stable-rc-0.6 grimoire by Eric Sandall
<sandalle AT sourcemage.org>:

editors/gle/HISTORY | 6 ++++++
editors/gle/INSTALL | 8 ++++++--
2 files changed, 12 insertions(+), 2 deletions(-)

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

gle needs to check directory existing before copying a file there

diff --git a/editors/gle/HISTORY b/editors/gle/HISTORY
index 738be61..381e34a 100644
--- a/editors/gle/HISTORY
+++ b/editors/gle/HISTORY
@@ -1,3 +1,9 @@
+2007-01-04 Eric Sandall <eric AT sandall.us>
+ * INSTALL: Install-rootify
+ Check if $INSTALL_ROOT/usr/doc is a directory before trying to copy
+ a file into it, and if not, make the directory (otherwise creates
+ a file $INSTALL_ROOT/usr/doc)
+
2006-09-21 Juuso Alasuutari <iuso AT sourcemage.org>
* DETAILS: [automated] Removed BUILD_API=2.

diff --git a/editors/gle/INSTALL b/editors/gle/INSTALL
index b9bb49f..443186f 100755
--- a/editors/gle/INSTALL
+++ b/editors/gle/INSTALL
@@ -1,3 +1,7 @@
- make -f Makefile.gcc install &&
- cp $SOURCE_CACHE/$SOURCE2 /usr/doc
+make -f Makefile.gcc install &&

+if [[ ! -d $INSTALL_ROOT/usr/doc ]]; then
+ mkdir -p $INSTALL_ROOT/usr/doc
+fi &&
+
+cp $SOURCE_CACHE/$SOURCE2 $INSTALL_ROOT/usr/doc



  • [SM-Commit] GIT changes to stable-rc-0.6 grimoire by Eric Sandall (ec753602152464b9d5b52f0a026a3c44896dd078), Eric Sandall, 01/04/2007

Archive powered by MHonArc 2.6.24.

Top of Page