diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2015-08-20 09:32:56 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2015-08-20 09:32:56 -0400 |
commit | ceab18aaa172f34ab3b061efce684fc0899308ea (patch) | |
tree | 2294a3367360defd5ba7ad453b3ca93b526615f0 /ext/re | |
parent | 09b94b1f0efd8c107548a6fefcd471e9b06c2cdf (diff) | |
download | perl-ceab18aaa172f34ab3b061efce684fc0899308ea.tar.gz |
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.
Diffstat (limited to 'ext/re')
-rw-r--r-- | ext/re/Makefile.PL | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/re/Makefile.PL b/ext/re/Makefile.PL index 278477c171..3bb52f6830 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 } |