From owner-freebsd-ports@FreeBSD.ORG Wed Jul 20 12:59:00 2011 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B7FF106566B for ; Wed, 20 Jul 2011 12:59:00 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from forward14.mail.yandex.net (forward14.mail.yandex.net [95.108.130.92]) by mx1.freebsd.org (Postfix) with ESMTP id CAA638FC1B for ; Wed, 20 Jul 2011 12:58:58 +0000 (UTC) Received: from smtp13.mail.yandex.net (smtp13.mail.yandex.net [95.108.130.68]) by forward14.mail.yandex.net (Yandex) with ESMTP id 2036E1983544; Wed, 20 Jul 2011 16:58:57 +0400 (MSD) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1311166737; bh=hk7ZUHAnC83FoDTMU8HJfAjB9qRjNwtkW3UVsNVdZg4=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Content-Transfer-Encoding; b=fyM/M48WsH8m51IeipTq5lSLvQwCk4d8VESEcnP0589aOguHzb4+QSz6zdcWZoNLw 7Jca2hWqXp6CBr+FEHr6+hr2fvHIcaUNH+Eh7o1E/gCNVrpHqsErngMLWdsASIzdnI J8Fh4EbZxaoMKyBrthnq1CKcMQQG5k58ziFFgIbs= Received: from smeshariki2.local (unknown [213.27.65.65]) by smtp13.mail.yandex.net (Yandex) with ESMTPSA id C929C389805B; Wed, 20 Jul 2011 16:58:56 +0400 (MSD) Message-ID: <4E26D05F.908@yandex.ru> Date: Wed, 20 Jul 2011 16:55:59 +0400 From: Ruslan Mahmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:5.0) Gecko/20110701 Thunderbird/5.0 MIME-Version: 1.0 To: Anton Shterenlikht References: <20110720124017.GA94898@mech-cluster241.men.bris.ac.uk> In-Reply-To: <20110720124017.GA94898@mech-cluster241.men.bris.ac.uk> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Yandex-Spam: 1 Cc: freebsd-ports@freebsd.org Subject: Re: french/aster ignores PYTHON_VERSION= 2.6 ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jul 2011 12:59:00 -0000 Anton Shterenlikht wrote on 20.07.2011 16:40: > french/aster has in the Makefile: > > .if ${ARCH} == "amd64" > # python 2.7 causes process runaway > PYTHON_VERSION= 2.6 > .endif > > I get the same on ia64, so I changed it to: > > .if ${ARCH} == "amd64" || ${ARCH} == "ia64" > # python 2.7 causes process runaway > PYTHON_VERSION= 2.6 > .endif > > But still 2.7 is used: > > # grep python ./work/aster-full-src-10.3.0/config.log > /usr/local/bin/python2.7 setup.pyo test > # > > Why? > > Thanks > Anton > As far i understand PYTHON_VERSION hold value like 'python2.7', so you should correct this in your Makefile. Or just use USE_PYTHON = 2.6 -- Regards, Ruslan