Skip to Content.
Sympa Menu

sm-grimoire-bugs - [SM-Grimoire-Bugs] [Bug 10044] New: jam install is x86-dependant

sm-grimoire-bugs AT lists.ibiblio.org

Subject: SourceMage Grimoire Bug List

List archive

Chronological Thread  
  • From: bugzilla-daemon AT bugs.sourcemage.org
  • To: sm-grimoire-bugs AT lists.ibiblio.org
  • Subject: [SM-Grimoire-Bugs] [Bug 10044] New: jam install is x86-dependant
  • Date: Sat, 29 Oct 2005 19:56:46 -0700 (PDT)

http://bugs.sourcemage.org/show_bug.cgi?id=10044

Summary: jam install is x86-dependant
Product: Codex
Version: stable grimoire
Platform: PPC
OS/Version: Linux
Status: NEW
Severity: blocker
Priority: P2
Component: devel
AssignedTo: sm-grimoire-bugs AT lists.ibiblio.org
ReportedBy: eekee AT eekee.is-a-geek.org


Jam builds its executable in an architecture-dependant directory: bin.linuxx86
on x86, bin.linuxppc on ppc etc. The spell does the installation manually, but
assumes the jam binary will be bin.linuxx86/jam .

This workaround tests for the presence of each architecture directory in turn,
which isn't brilliant in that it requires the directory name for each
architecture to be added seperately (I've only added PPC), but I'm unsure of
the
general architecture naming scheme jam uses.

--- INSTALL.old 2005-10-30 02:15:34.000000000 +0000
+++ INSTALL 2005-10-30 02:29:58.000000000 +0000
@@ -1,3 +1,5 @@
-install -m 755 bin.linuxx86/jam /usr/bin/jam &&
+if test -d bin.linuxx86; then install -m 755 bin.linuxx86/jam /usr/bin/jam
+elif test -d bin.linuxppc; then install -m 755 bin.linuxppc/jam /usr/bin/jam
+fi &&
install -D -m 444 RELNOTES /usr/doc/jam/RELNOTES &&
chmod a-s /usr/bin/jam

--
Configure bugmail: http://bugs.sourcemage.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



  • [SM-Grimoire-Bugs] [Bug 10044] New: jam install is x86-dependant, bugzilla-daemon, 10/29/2005

Archive powered by MHonArc 2.6.24.

Top of Page