diff options
author | Jack Mitchell <jack.mitchell@dbbroadcast.co.uk> | 2012-09-13 13:58:30 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-14 09:50:26 +0100 |
commit | 56d8665f1294f7b4b17b9d78af7891738e399036 (patch) | |
tree | 1465634a8848d87746ff525144678360e0f57020 /meta | |
parent | 30db39829b64d675e8114f0441bb7b71b3161f10 (diff) | |
download | poky-56d8665f1294f7b4b17b9d78af7891738e399036.tar.gz |
git: define NO_PYTHON=1 to stop git requiring python as a dependancy
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.
(From OE-Core rev: 602538e1c8403e8b188109ce94a906a1d9090d7e)
Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/git/git.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-devtools/git/git.inc b/meta/recipes-devtools/git/git.inc index 6748b70d24..4a0c4aaaef 100644 --- a/meta/recipes-devtools/git/git.inc +++ b/meta/recipes-devtools/git/git.inc | |||
@@ -10,7 +10,11 @@ S = "${WORKDIR}/git-${PV}" | |||
10 | 10 | ||
11 | LIC_FILES_CHKSUM = "file://COPYING;md5=7c0d7ef03a7eb04ce795b0f60e68e7e1" | 11 | LIC_FILES_CHKSUM = "file://COPYING;md5=7c0d7ef03a7eb04ce795b0f60e68e7e1" |
12 | 12 | ||
13 | EXTRA_OECONF = "--with-perl=${STAGING_BINDIR_NATIVE}/perl-native/perl --without-tcltk" | 13 | EXTRA_OECONF = "--with-perl=${STAGING_BINDIR_NATIVE}/perl-native/perl \ |
14 | --without-tcltk \ | ||
15 | " | ||
16 | |||
17 | EXTRA_OEMAKE = "NO_PYTHON=1" | ||
14 | 18 | ||
15 | inherit autotools perlnative | 19 | inherit autotools perlnative |
16 | 20 | ||