mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 14:19:10 -04:00
Fix for "WriteMakefile: Need even number of args" when @CC_LIBS is defined
This commit is contained in:
parent
0334e4cca5
commit
c2bbe22fd5
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ WriteMakefile(
|
|||
EXE_FILES => [],
|
||||
INC => join( ' ', @CC_INC ),
|
||||
DEFINE => join( ' ', @CC_DEFINE ),
|
||||
( @CC_LIBS ? join( ' ', @CC_LIBS ) : () ),
|
||||
( @CC_LIBS ? ( LIBS => join( ' ', @CC_LIBS ) ) : () ),
|
||||
);
|
||||
|
||||
package MY;
|
||||
|
|
Loading…
Add table
Reference in a new issue