Skip to content

Commit bf531c6

Browse files
committedNov 17, 2024·
make sure INC has a space so no run args together
1 parent 5e1dd3b commit bf531c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Makefile.PL

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ $descriptor{CCFLAGS} .= ( ($Config{ccname} =~ m/gcc/) ? '--std=gnu99 ' : '' ) .
5353
push @{$descriptor{LIBS} }, $libs;
5454

5555
$descriptor{INC} = '' unless defined $descriptor{INC};
56-
$descriptor{INC} .= $cflags;
56+
$descriptor{INC} .= " $cflags";
5757

5858
$descriptor{depend} = { 'FFTW3.pm' => join(' ', qw(template_complex.c template_real.c
5959
compute_plan_template.xs

0 commit comments

Comments
 (0)
Please sign in to comment.