From 8a4c8deee9af6fa1a1e906c52d7d49a32434464c Mon Sep 17 00:00:00 2001 From: Francois Perrad Date: Tue, 3 Mar 2015 20:53:06 +0100 Subject: [PATCH] perl: fix build caused by bison generated code This commit makes sure the date of a C file is newer than the date of the corresponding Bison source file, so that the build process doesn't try to regenerate it. This avoids the need to have host-bison as a dependency for the perl build. Fixes: http://autobuild.buildroot.net/results/1c2/1c261b09f5a4a314d5dcbc1e5811af9c7d18658a/ Signed-off-by: Francois Perrad Signed-off-by: Thomas Petazzoni --- package/perl/perl.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/perl/perl.mk b/package/perl/perl.mk index 0636abaf54..cd4c2867de 100644 --- a/package/perl/perl.mk +++ b/package/perl/perl.mk @@ -85,6 +85,7 @@ endif define PERL_CONFIGURE_CMDS (cd $(@D); HOSTCC='$(HOSTCC_NOCACHE)' ./configure $(PERL_CONF_OPTS)) $(SED) 's/UNKNOWN-/Buildroot $(BR2_VERSION_FULL) /' $(@D)/patchlevel.h + touch $(@D)/x2p/a2p.c # prevents regen by yacc endef define PERL_BUILD_CMDS -- 2.30.2