From 010511fe83a765238e0cb050621beee5a00fce69 Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Wed, 24 Jan 2018 13:43:42 +1300 Subject: [PATCH 2/2] lib/compile: Handle libtool .lo files * lib/compile(func_cl_wrapper): Add *.lo to list of files to handle as object files. --- lib/compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compile b/lib/compile index 7851f7c4..e2931cf9 100755 --- a/lib/compile +++ b/lib/compile @@ -143,7 +143,7 @@ func_cl_wrapper () # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in - *.o | *.[oO][bB][jJ]) + *.o | *.lo | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift -- 2.15.1