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 gfxprim.git.
The branch, master has been updated via c4ae73720b3f73c4c93cc9d697c07b4353c54ce1 (commit) from d9ac064e99ae31787e556d4f10bf3f4afd93acda (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 ----------------------------------------------------------------- http://repo.or.cz/w/gfxprim.git/commit/c4ae73720b3f73c4c93cc9d697c07b4353c54...
commit c4ae73720b3f73c4c93cc9d697c07b4353c54ce1 Author: Cyril Hrubis metan@ucw.cz Date: Mon Nov 14 20:53:56 2011 +0100
build: fix configure for portable shells
diff --git a/configure b/configure index b252512..12c3a89 100755 --- a/configure +++ b/configure @@ -23,7 +23,7 @@ def header_exists(cfg, filename): def c_try_compile(cfg, code, msg): sys.stderr.write(msg)
- ret = os.system("echo '{0}' | {1} -x c -o /dev/null - &>/dev/null".format(code, cfg["CC"][0])) + ret = os.system("echo '{0}' | {1} -x c -o /dev/null - > /dev/null 2>&1".format(code, cfg["CC"][0])) if ret: sys.stderr.write("Non") @@ -39,7 +39,7 @@ def c_compiler_exists(cfg): def python_module_installed(cfg, module): sys.stderr.write("Checking for python module {0} ... ".format(module))
- ret = os.system("echo 'import {0}' | {1}".format(module, cfg['PYTHON_BIN'][0])) + ret = os.system("echo 'import {0}' | {1} > /dev/null 2>&1".format(module, cfg['PYTHON_BIN'][0]))
if ret: sys.stderr.write('Non')
-----------------------------------------------------------------------
Summary of changes: configure | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos@gmail.com if you want to unsubscribe, or site admin admin@repo.or.cz if you receive no reply.