summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorGisle Aas <gisle@activestate.com>2006-03-16 21:27:00 +0000
committerGisle Aas <gisle@activestate.com>2006-03-16 21:27:00 +0000
commit25785bc1464b6f682bcd13889b9868abe4c22570 (patch)
tree4b8a8746128d78ec2d4e865c8a065db56dc87238 /ext
parent4b4bd025b2297f15aadaf5a5249fa56096be11a0 (diff)
downloadperl-25785bc1464b6f682bcd13889b9868abe4c22570.tar.gz
Avoid hardcoded $(OBJ_EXT)
p4raw-id: //depot/perl@27522
Diffstat (limited to 'ext')
-rw-r--r--ext/DynaLoader/Makefile.PL2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/DynaLoader/Makefile.PL b/ext/DynaLoader/Makefile.PL
index 83cbd770b0..30853c68df 100644
--- a/ext/DynaLoader/Makefile.PL
+++ b/ext/DynaLoader/Makefile.PL
@@ -12,7 +12,7 @@ WriteMakefile(
'XSLoader_pm.PL'=>'XSLoader.pm'},
PM => {'DynaLoader.pm' => '$(INST_LIBDIR)/DynaLoader.pm',
'XSLoader.pm' => '$(INST_LIBDIR)/XSLoader.pm'},
- depend => {'DynaLoader.o' => 'dlutils.c'},
+ depend => {'DynaLoader$(OBJ_EXT)' => 'dlutils.c'},
clean => {FILES => 'DynaLoader.c DynaLoader.xs DynaLoader.pm ' .
'XSLoader.pm'},
);