From owner-freebsd-python@FreeBSD.ORG  Sun May  2 19:08:13 2004
Return-Path: <owner-freebsd-python@FreeBSD.ORG>
Delivered-To: freebsd-python@freebsd.org
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 2DF4B16A4CF
	for <freebsd-python@FreeBSD.org>;
	Sun,  2 May 2004 19:08:13 -0700 (PDT)
Received: from miffy.openlook.org (openlook.org [211.236.182.73])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 6D16643D46
	for <freebsd-python@FreeBSD.org>;
	Sun,  2 May 2004 19:08:12 -0700 (PDT)
	(envelope-from perky@miffy.openlook.org)
Received: by miffy.openlook.org (Postfix, from userid 1000)
	id B19D4A919; Mon,  3 May 2004 11:08:11 +0900 (KST)
Date: Mon, 3 May 2004 11:08:11 +0900
From: Hye-Shik Chang <perky@i18n.org>
To: Jeremy Messenger <mezz7@cox.net>
Message-ID: <20040503020811.GA36288@i18n.org>
References: <opr7eg0tql8ckrg5@smtp.central.cox.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <opr7eg0tql8ckrg5@smtp.central.cox.net>
X-Accept-Language: ko, en
User-Agent: Mutt/1.5.6i
cc: freebsd-python@FreeBSD.org
Subject: Re: Is it bug in Straw or Python?
X-BeenThere: freebsd-python@freebsd.org
X-Mailman-Version: 2.1.1
Precedence: list
List-Id: FreeBSD-specific Python issues <freebsd-python.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/freebsd-python>,
	<mailto:freebsd-python-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-python>
List-Post: <mailto:freebsd-python@freebsd.org>
List-Help: <mailto:freebsd-python-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/freebsd-python>,
	<mailto:freebsd-python-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 03 May 2004 02:08:13 -0000

On Sun, May 02, 2004 at 08:27:55PM -0500, Jeremy Messenger wrote:
> Hello,
> 
> I am sure, some of you might remember that net/straw has hit on Python bug 
> sometime ago. So, I am not sure if it's Straw or Python bug. The update 
> version (0.23, not in ports tree yet) of Straw will complain:
> 
> =======================================
> creating /var/tmp/straw/etc/gconf/schemas
> copying data/straw.schemas -> /var/tmp/straw/etc/gconf/schemas
> running install_gconf
> error: Interrupted system call
> *** Error code 1
> =======================================
> 
> It complains with and without '-c -O1' in PYDISTUTILS_INSTALLARGS. So, I 
> created a workaround for now like this:
> 
> =======================================
> -      msg_sources      = translation_files(),
> +      msg_sources      = ['glade/strings.c'] + glob.glob('src/lib/*.py'),
> =======================================
> 

I couldn't reproduce the problem on my desktop (CURRENT Apr 30 and
2.3.3_5).  Which version of FreeBSD and Python do you use?

Hye-Shik