diff options
author | Saul Wold <Saul.Wold@intel.com> | 2010-11-10 20:35:31 -0800 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2010-11-14 21:08:23 -0800 |
commit | 8e3046d8bdd52de5bdca7aba9fbf44743929ccf0 (patch) | |
tree | 817376084b1a1bc40081a9cf02cdf2027e4dfe01 /meta | |
parent | d64c7ae88ca29def7dd2869acaa0e2ec047bd153 (diff) | |
download | poky-8e3046d8bdd52de5bdca7aba9fbf44743929ccf0.tar.gz |
git: Update recipe for git to include configure options
Updated LICENSE
Added LIC_FILES_CHKSUM
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/git/git.inc | 6 | ||||
-rw-r--r-- | meta/recipes-devtools/git/git_1.7.2.1.bb | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/meta/recipes-devtools/git/git.inc b/meta/recipes-devtools/git/git.inc index 5d72df59d1..da4541dd40 100644 --- a/meta/recipes-devtools/git/git.inc +++ b/meta/recipes-devtools/git/git.inc | |||
@@ -1,18 +1,20 @@ | |||
1 | DESCRIPTION = "The git revision control system used by the Linux kernel developers" | 1 | DESCRIPTION = "The git revision control system used by the Linux kernel developers" |
2 | SECTION = "console/utils" | 2 | SECTION = "console/utils" |
3 | LICENSE = "GPL" | 3 | LICENSE = "GPLv2" |
4 | DEPENDS = "perl-native openssl curl zlib expat" | 4 | DEPENDS = "perl-native openssl curl zlib expat" |
5 | 5 | ||
6 | SRC_URI = "http://www.kernel.org/pub/software/scm/git/git-${PV}.tar.bz2 \ | 6 | SRC_URI = "http://www.kernel.org/pub/software/scm/git/git-${PV}.tar.bz2 \ |
7 | file://autotools.patch;patch=1" | 7 | file://autotools.patch;patch=1" |
8 | S = "${WORKDIR}/git-${PV}" | 8 | S = "${WORKDIR}/git-${PV}" |
9 | 9 | ||
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=7c0d7ef03a7eb04ce795b0f60e68e7e1" | ||
11 | |||
10 | EXTRA_OECONF = "--with-perl=${STAGING_BINDIR_NATIVE}/perl --without-tcltk" | 12 | EXTRA_OECONF = "--with-perl=${STAGING_BINDIR_NATIVE}/perl --without-tcltk" |
11 | 13 | ||
12 | inherit autotools | 14 | inherit autotools |
13 | 15 | ||
14 | do_install () { | 16 | do_install () { |
15 | oe_runmake install prefix=${D} bindir=${D}${bindir} \ | 17 | oe_runmake install prefix=${D} bindir=${D}${bindir} gitexecdir=${D}${gitexecdir} \ |
16 | template_dir=${D}${datadir}/git-core/templates \ | 18 | template_dir=${D}${datadir}/git-core/templates \ |
17 | GIT_PYTHON_DIR=${D}${datadir}/git-core/python | 19 | GIT_PYTHON_DIR=${D}${datadir}/git-core/python |
18 | } | 20 | } |
diff --git a/meta/recipes-devtools/git/git_1.7.2.1.bb b/meta/recipes-devtools/git/git_1.7.2.1.bb index 7f822f69b3..c8aad2e18e 100644 --- a/meta/recipes-devtools/git/git_1.7.2.1.bb +++ b/meta/recipes-devtools/git/git_1.7.2.1.bb | |||
@@ -1,3 +1,8 @@ | |||
1 | require git.inc | 1 | require git.inc |
2 | 2 | ||
3 | PR = "r2" | 3 | PR = "r3" |
4 | |||
5 | EXTRA_OECONF += "ac_cv_snprintf_returns_bogus=no ac_cv_c_c99_format=yes \ | ||
6 | ac_cv_fread_reads_directories=${ac_cv_fread_reads_directories=yes} \ | ||
7 | " | ||
8 | |||