diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-10-04 12:45:45 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-11-25 17:12:42 -0800 |
commit | 048a2f473ab9e1649559f56eff334b3c25289f57 (patch) | |
tree | 888dfebc18a7d1a0720ca20c2a3c295d466c26be /ext/XS-APItest | |
parent | 0f534aaf12174a6c02f455475bef3141f46c221b (diff) | |
download | perl-048a2f473ab9e1649559f56eff334b3c25289f57.tar.gz |
Missing dependency in XS::APItest’s Makefile
When core_or_not.inc is modified, core.c and notcore.c should
be recompiled.
Diffstat (limited to 'ext/XS-APItest')
-rw-r--r-- | ext/XS-APItest/Makefile.PL | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/XS-APItest/Makefile.PL b/ext/XS-APItest/Makefile.PL index 5e2955bfd3..031ce8a0b0 100644 --- a/ext/XS-APItest/Makefile.PL +++ b/ext/XS-APItest/Makefile.PL @@ -14,6 +14,8 @@ WriteMakefile( realclean => {FILES => 'const-c.inc const-xs.inc'}, ($Config{gccversion} && $Config{d_attribute_deprecated} ? (CCFLAGS => $Config{ccflags} . ' -Wno-deprecated-declarations') : ()), + depend => { 'core.o' => 'core_or_not.inc', + 'notcore.o' => 'core_or_not.inc' }, ); my @names = (qw(HV_DELETE HV_DISABLE_UVAR_XKEY HV_FETCH_ISSTORE |