Skip to content

Commit 332e351

Browse files
committed
Fix installed pkgconfig file using wrong linker argument
for some unknown reason I used "-l:<lib>" in the .pc files while it should just be "-l<lib>". This would prevent project-eval from being linked in projects using pkgconfig.
1 parent 811eea5 commit 332e351

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projectm-eval/projectm-eval.pc.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ sysconfdir=${prefix}/
88
Name: projectm-eval
99
Version: @PROJECT_VERSION@
1010
Description: projectM Expression Evaluation Library
11-
Libs: -L${libdir} -l:projectM_eval
11+
Libs: -L${libdir} -lprojectM_eval
1212
Cflags: -I${includedir} -DPRJM_F_SIZE=@PROJECTM_EVAL_FLOAT_SIZE@

0 commit comments

Comments
 (0)