From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga14.intel.com ([143.182.124.37]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1TCYQ4-0006GD-2z for openembedded-core@lists.openembedded.org; Fri, 14 Sep 2012 18:07:04 +0200 Received: from azsmga001.ch.intel.com ([10.2.17.19]) by azsmga102.ch.intel.com with ESMTP; 14 Sep 2012 08:54:28 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.80,423,1344236400"; d="scan'208";a="192814453" Received: from unknown (HELO [10.255.13.94]) ([10.255.13.94]) by azsmga001.ch.intel.com with ESMTP; 14 Sep 2012 08:54:27 -0700 Message-ID: <50535333.7090601@linux.intel.com> Date: Fri, 14 Sep 2012 08:54:27 -0700 From: Saul Wold User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:15.0) Gecko/20120827 Thunderbird/15.0 MIME-Version: 1.0 To: Jack Mitchell References: <504FAFAD.3050600@communistcode.co.uk> <1347541110-24989-1-git-send-email-ml@communistcode.co.uk> In-Reply-To: <1347541110-24989-1-git-send-email-ml@communistcode.co.uk> Cc: Jack Mitchell , openembedded-core@lists.openembedded.org Subject: Re: [PATCH] git: define NO_PYTHON=1 to stop git requiring python as a dependancy X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Sep 2012 16:07:04 -0000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 09/13/2012 05:58 AM, Jack Mitchell wrote: > From: Jack Mitchell > > Git requires python by default as an included script to link git > to perforce is written in Python. Define NO_PYTHON to stop the > script being included and thus remove the dependancy on Python. > > Signed-off-by: Jack Mitchell > --- > meta/recipes-devtools/git/git.inc | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/meta/recipes-devtools/git/git.inc b/meta/recipes-devtools/git/git.inc > index 6748b70..4a0c4aa 100644 > --- a/meta/recipes-devtools/git/git.inc > +++ b/meta/recipes-devtools/git/git.inc > @@ -10,7 +10,11 @@ S = "${WORKDIR}/git-${PV}" > > LIC_FILES_CHKSUM = "file://COPYING;md5=7c0d7ef03a7eb04ce795b0f60e68e7e1" > > -EXTRA_OECONF = "--with-perl=${STAGING_BINDIR_NATIVE}/perl-native/perl --without-tcltk" > +EXTRA_OECONF = "--with-perl=${STAGING_BINDIR_NATIVE}/perl-native/perl \ > + --without-tcltk \ > +" > + > +EXTRA_OEMAKE = "NO_PYTHON=1" > > inherit autotools perlnative > > Merged into OE-Core Thanks Sau!