From 332e3515061ad6573e9020888194c3922216d5ea Mon Sep 17 00:00:00 2001 From: Kai Blaschke Date: Tue, 2 Dec 2025 18:09:14 +0100 Subject: [PATCH] Fix installed pkgconfig file using wrong linker argument for some unknown reason I used "-l:" in the .pc files while it should just be "-l". This would prevent project-eval from being linked in projects using pkgconfig. --- projectm-eval/projectm-eval.pc.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projectm-eval/projectm-eval.pc.in b/projectm-eval/projectm-eval.pc.in index 87f2c16..eea98d9 100644 --- a/projectm-eval/projectm-eval.pc.in +++ b/projectm-eval/projectm-eval.pc.in @@ -8,5 +8,5 @@ sysconfdir=${prefix}/ Name: projectm-eval Version: @PROJECT_VERSION@ Description: projectM Expression Evaluation Library -Libs: -L${libdir} -l:projectM_eval +Libs: -L${libdir} -lprojectM_eval Cflags: -I${includedir} -DPRJM_F_SIZE=@PROJECTM_EVAL_FLOAT_SIZE@