In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/ceab18aaa172f34ab3b061efce684fc0899308ea?hp=09b94b1f0efd8c107548a6fefcd471e9b06c2cdf>
- Log ----------------------------------------------------------------- commit ceab18aaa172f34ab3b061efce684fc0899308ea Author: Jarkko Hietaniemi <[email protected]> Date: Thu Aug 20 09:32:56 2015 -0400 b992490d copied wrong for ext re. This has been magically working since ext re builds with -I../.., and so picks up the inline headers from the top, the copied bogus file has been left unused. ----------------------------------------------------------------------- Summary of changes: ext/re/Makefile.PL | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ext/re/Makefile.PL b/ext/re/Makefile.PL index 278477c..3bb52f6 100644 --- a/ext/re/Makefile.PL +++ b/ext/re/Makefile.PL @@ -32,21 +32,21 @@ re_comp.c : $regcomp_c - \$(RM_F) re_comp.c \$(CP) $regcomp_c re_comp.c -re_comp\$(OBJ_EXT) : re_comp.c dquote.c invlist_inline_h +re_comp\$(OBJ_EXT) : re_comp.c dquote.c invlist_inline.h re_exec.c : $regexec_c - \$(RM_F) re_exec.c \$(CP) $regexec_c re_exec.c -re_exec\$(OBJ_EXT) : re_exec.c invlist_inline_h +re_exec\$(OBJ_EXT) : re_exec.c invlist_inline.h dquote.c : $dquote_c - \$(RM_F) dquote.c \$(CP) $dquote_c dquote.c -invlist_inline_h : $inline_invlist_c - - \$(RM_F) invlist_inline_h - \$(CP) $invlist_inline_h inline_invlist.c +invlist_inline.h : $invlist_inline_h + - \$(RM_F) invlist_inline.h + \$(CP) $invlist_inline_h invlist_inline.h EOF } -- Perl5 Master Repository
