aboutsummaryrefslogtreecommitdiffstats
path: root/USER
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2006-06-08 12:46:21 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2006-06-08 12:46:21 +0000
commit603d9a4eab22950215e852da96a64e42dc55d1ad (patch)
treed952d95aef9478072fe87eedaa25b84e4dd2a3e9 /USER
parentdb0234dd098d7345bc83e81966080fcb05d82b56 (diff)
downloaduserdrake-603d9a4eab22950215e852da96a64e42dc55d1ad.tar
userdrake-603d9a4eab22950215e852da96a64e42dc55d1ad.tar.gz
userdrake-603d9a4eab22950215e852da96a64e42dc55d1ad.tar.bz2
userdrake-603d9a4eab22950215e852da96a64e42dc55d1ad.tar.xz
userdrake-603d9a4eab22950215e852da96a64e42dc55d1ad.zip
fix linking with libuser (littletux@zarb.org, #22924)
Diffstat (limited to 'USER')
-rw-r--r--USER/Makefile.PL2
1 files changed, 1 insertions, 1 deletions
diff --git a/USER/Makefile.PL b/USER/Makefile.PL
index 6058f77..fdf6ae4 100644
--- a/USER/Makefile.PL
+++ b/USER/Makefile.PL
@@ -9,7 +9,7 @@ WriteMakefile(
'NAME' => 'USER',
'VERSION_FROM' => 'USER.pm',
'OBJECT' => 'USER.o', # link all the C files too
- 'LIBS' => "\"$libs\"", # e.g., '-lm'
+ 'LIBS' => "$libs", # e.g., '-lm'
'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
'INC' => "`pkg-config --cflags libuser`", # e.g., '-I. -I/usr/include/other'
'XSPROTOARG' => '-noprototypes',