This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 3.x development tree".
The branch, master has been updated via 69aa42b9a14e0fbfd4854bb7cb0982cc5086c4b8 (commit) via faf01c057a586195499097861d510407222cd7cb (commit) from 9f0833cd8c49235a39008dfc86f73375917ff244 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 69aa42b9a14e0fbfd4854bb7cb0982cc5086c4b8 Author: Michael Tremer michael.tremer@ipfire.org Date: Fri Mar 19 17:51:12 2010 +0100
naoki: Fix definition of CXXFLAGS.
commit faf01c057a586195499097861d510407222cd7cb Author: Michael Tremer michael.tremer@ipfire.org Date: Fri Mar 19 17:49:39 2010 +0100
naoki: Fix arch specification in toolchain build.
-----------------------------------------------------------------------
Summary of changes: config/architectures.conf | 7 ++++--- naoki/__init__.py | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-)
Difference in files: diff --git a/config/architectures.conf b/config/architectures.conf index 0cf691f..8df3185 100644 --- a/config/architectures.conf +++ b/config/architectures.conf @@ -5,7 +5,7 @@ machine = i686 personality = linux32
cflags = -O2 -fomit-frame-pointer -pipe - +cxxflags = %(cflags)s
[i586]
@@ -13,7 +13,7 @@ machine = i586 personality = linux32
cflags = -O2 -fomit-frame-pointer -pipe - +cxxflags = %(cflags)s
[i486]
@@ -21,7 +21,7 @@ machine = i486 personality = linux32
cflags = -O2 -fomit-frame-pointer -pipe - +cxxflags = %(cflags)s
[alix]
@@ -42,3 +42,4 @@ machine = x86_64 personality = linux64
cflags = -O2 -fomit-frame-pointer -pipe +cxxflags = %(cflags)s diff --git a/naoki/__init__.py b/naoki/__init__.py index 039eff6..df7474a 100644 --- a/naoki/__init__.py +++ b/naoki/__init__.py @@ -54,12 +54,12 @@ class Naoki(object): return actionmap[args.action.name](args.action)
def call_toolchain_build(self, args): - toolchain = chroot.Toolchain(arch) + toolchain = chroot.Toolchain(arches.current["name"])
return toolchain.build()
def call_toolchain_download(self, args): - toolchain = chroot.Toolchain(arch) + toolchain = chroot.Toolchain(arches.current["name"])
return toolchain.download()
hooks/post-receive -- IPFire 3.x development tree