diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/git/git.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/recipes-devtools/git/git.inc b/meta/recipes-devtools/git/git.inc index be3831b768..ce2f5742f1 100644 --- a/meta/recipes-devtools/git/git.inc +++ b/meta/recipes-devtools/git/git.inc | |||
@@ -12,6 +12,12 @@ EXTRA_OECONF = "--with-perl=${STAGING_BINDIR_NATIVE}/perl-native/perl --without- | |||
12 | 12 | ||
13 | inherit autotools perlnative | 13 | inherit autotools perlnative |
14 | 14 | ||
15 | do_compile_prepend () { | ||
16 | # Remove perl/perl.mak to fix the out-of-date perl.mak error | ||
17 | # during rebuild | ||
18 | rm -f perl/perl.mak | ||
19 | } | ||
20 | |||
15 | do_install () { | 21 | do_install () { |
16 | oe_runmake install DESTDIR="${D}" bindir=${bindir} \ | 22 | oe_runmake install DESTDIR="${D}" bindir=${bindir} \ |
17 | template_dir=${datadir}/git-core/templates \ | 23 | template_dir=${datadir}/git-core/templates \ |