]> code.ossystems Code Review - openembedded-core.git/commitdiff
git 1.7.7: remove perl.mak before compile
authorRobert Yang <liezhi.yang@windriver.com>
Mon, 9 Apr 2012 08:37:12 +0000 (16:37 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 10 Apr 2012 12:15:59 +0000 (13:15 +0100)
The git may fail to rebuild when perl's Config.pm or config.h changes,
this is because Makefile detects that perl/perl.mak is out of date.
Remove perl.mak to let Makefile regenerate it would fix the error.
Both git and git-native have this problem.

To reproduce the error: (On x86_64 host)

$ bitbake git-native
$ touch tmp/sysroots/x86_64-linux/usr/lib/perl-native/perl/5.14.2/Config.pm
$ bitbake git-native -ccompile -f

[YOCTO #2156]

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
meta/recipes-devtools/git/git.inc

index be3831b768b560b503a17ce4d589d05dadc03ce6..ce2f5742f1a926f1b0e3e5f99defd79dd3c3c679 100644 (file)
@@ -12,6 +12,12 @@ EXTRA_OECONF = "--with-perl=${STAGING_BINDIR_NATIVE}/perl-native/perl --without-
 
 inherit autotools perlnative
 
+do_compile_prepend () {
+       # Remove perl/perl.mak to fix the out-of-date perl.mak error
+       # during rebuild
+       rm -f perl/perl.mak
+}
+
 do_install () {
        oe_runmake install DESTDIR="${D}" bindir=${bindir} \
                template_dir=${datadir}/git-core/templates \