Skip to content

Commit 8dee36f

Browse files
committed
fix files not being copied at end
1 parent f1ca317 commit 8dee36f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Perl/Dist/APPerl.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1328,7 +1328,7 @@ sub Build {
13281328
foreach my $srcfile ('perl.com', 'perl.com.dbg') {
13291329
my $destfile = $itemconfig->{dest};
13301330
$destfile .= '.dbg' if ($srcfile =~ /dbg$/);
1331-
my @args = ("$UserProjectConfig->{apperl_output}/$CurAPPerlName/$srcfile", $destfile);
1331+
my @args = ("$UserProjectConfig->{apperl_output}/$CurAPPerlName/o/$srcfile", $destfile);
13321332
-e $args[0] or next;
13331333
print 'cp '.join(' ', @args)."\n";
13341334
cp(@args) or die "copy failed: $!";

0 commit comments

Comments
 (0)