aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xUSER/Makefile.PL4
1 files changed, 2 insertions, 2 deletions
diff --git a/USER/Makefile.PL b/USER/Makefile.PL
index 0867054..53d8cdf 100755
--- a/USER/Makefile.PL
+++ b/USER/Makefile.PL
@@ -10,9 +10,9 @@ WriteMakefile(
'OPTIMIZE' => '-Wno-declaration-after-statement',
'VERSION_FROM' => 'USER.pm',
'OBJECT' => 'USER.o', # link all the C files too
- 'LIBS' => "$libs", # e.g., '-lm'
+ 'LIBS' => $libs, # e.g., '-lm'
'DEFINE' => '-DPACKAGE_NAME=\"userdrake\"', # e.g., '-DHAVE_SOMETHING'
'INC' => "`pkg-config --cflags libuser`", # e.g., '-I. -I/usr/include/other'
'XSPROTOARG' => '-noprototypes',
- 'TYPEMAPS' => ['../perlobject.map' ],
+ 'TYPEMAPS' => [ '../perlobject.map' ],
);