From 72e1346d044ccf72735b2c4a2e72f79fa20b236b Mon Sep 17 00:00:00 2001 From: Dan Nicholson Date: Sun, 16 Dec 2012 09:18:48 -0800 Subject: Add root /lib* directories to the default -L paths Avoids outputting -L/lib, which the linker will search in implicitly like -L/usr/lib. Freedesktop #58363 (https://bugs.freedesktop.org/show_bug.cgi?id=58363) --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 7e887d4..2b79704 100644 --- a/configure.ac +++ b/configure.ac @@ -75,10 +75,10 @@ AC_ARG_WITH([system_library_path], [ case "$libdir" in *lib64) - system_library_path="/usr/lib64:/usr/lib" + system_library_path="/usr/lib64:/lib64:/usr/lib:/lib" ;; *) - system_library_path="/usr/lib" + system_library_path="/usr/lib:/lib" ;; esac ]) -- cgit v1.2.1