summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/packages/git/git-native_1.5.4.4.bb4
-rw-r--r--meta/packages/git/git.inc3
2 files changed, 4 insertions, 3 deletions
diff --git a/meta/packages/git/git-native_1.5.4.4.bb b/meta/packages/git/git-native_1.5.4.4.bb
index 935c773c1c..69f6f014c6 100644
--- a/meta/packages/git/git-native_1.5.4.4.bb
+++ b/meta/packages/git/git-native_1.5.4.4.bb
@@ -1,4 +1,4 @@
1require git.inc 1require git.inc
2inherit native 2inherit native
3DEPENDS = "openssl-native curl-native zlib-native expat-native" 3DEPENDS += "openssl-native curl-native zlib-native expat-native"
4PR = "r1" 4PR = "r2"
diff --git a/meta/packages/git/git.inc b/meta/packages/git/git.inc
index 7115d44b35..3e87811582 100644
--- a/meta/packages/git/git.inc
+++ b/meta/packages/git/git.inc
@@ -1,12 +1,13 @@
1DESCRIPTION = "The git revision control system used by the Linux kernel developers" 1DESCRIPTION = "The git revision control system used by the Linux kernel developers"
2SECTION = "console/utils" 2SECTION = "console/utils"
3LICENSE = "GPL" 3LICENSE = "GPL"
4DEPENDS = "perl-native"
4 5
5SRC_URI = "http://www.kernel.org/pub/software/scm/git/git-${PV}.tar.bz2 \ 6SRC_URI = "http://www.kernel.org/pub/software/scm/git/git-${PV}.tar.bz2 \
6 file://autotools.patch;patch=1" 7 file://autotools.patch;patch=1"
7S = "${WORKDIR}/git-${PV}" 8S = "${WORKDIR}/git-${PV}"
8 9
9EXTRA_OEMAKE = "NO_TCLTL=1" 10EXTRA_OECONF = "--with-perl=${STAGING_BINDIR_NATIVE}/perl --without-tcltk"
10 11
11inherit autotools 12inherit autotools
12 13