Skip to content

Commit 3f854b6

Browse files
committed
Fix Changes dependencies (issue #168)
1 parent 01e3a48 commit 3f854b6

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

Makefile.PL

+4-7
Original file line numberDiff line numberDiff line change
@@ -357,14 +357,14 @@ changes_pm1 = ' . File::Spec->catfile ('lib', 'DBI', 'Changes.pm') . '
357357
changes_pm2 = ' . File::Spec->catfile ($self->{INST_LIB}, 'DBI', 'Changes.pm') . '
358358
'.q{
359359
360-
config :: $(changes_pm)
360+
config :: $(changes_pm1)
361361
$(NOECHO) $(NOOP)
362362
363-
$(changes_pm): Changes
363+
$(changes_pm2) $(changes_pm1): Changes
364364
$(MKPATH) $(inst_libdbi)
365-
$(RM_F) $(changes_pm)
365+
$(RM_F) $(changes_pm1) $(changes_pm2)
366366
perl changes2pm.pl
367-
$(CP) $(changes_pm1) $(changes_pm2)
367+
$(CP) $(changes_pm1) $(changes_pm2)
368368
369369
ptest: all
370370
prove --blib --jobs 8 --shuffle
@@ -388,9 +388,6 @@ dbipport:
388388
ppport: dbipport.h
389389
perl dbipport.h --compat-version=5.8.0 DBI.xs
390390
391-
lib/DBI/Changes.pm: Changes
392-
perl changes2pm.pl
393-
394391
checkpod:
395392
$(RM_RF) blib
396393
find . -type f \( -name .svn -prune -o -name \*.pm -o -name \*.PL -o -name \*.pl \) \

0 commit comments

Comments
 (0)