1From e865a93000913b4597607289356114cd159f4e28 Mon Sep 17 00:00:00 2001 2From: Your Name <you@example.com> 3Date: Fri, 21 May 2021 03:02:29 +0000 4Subject: [PATCH] fix compile error for cross compile 5 6On some distros, such as fedora32, cross compile failed with following 7error since host library is used. undefined reference to 8`stat64@GLIBC_2.33' 9 10According doc of ld, set searchdir begins with "=", but not hardcoded 11locations. 12 13Upstream-Status: Submitted [https://gitlab.gnome.org/GNOME/libgtop/-/merge_requests/26] 14 15Signed-off-by: Changqing Li <changqing.li@windriver.com> 16--- 17 configure.ac | 4 ++-- 18 1 file changed, 2 insertions(+), 2 deletions(-) 19 20diff --git a/configure.ac b/configure.ac 21index 472f44b..ed6a4d7 100644 22--- a/configure.ac 23+++ b/configure.ac 24@@ -270,8 +270,8 @@ AC_ARG_ENABLE(fatal-warnings, 25 [Define to enable fatal warnings])) 26 27 dnl These definitions are expanded in make. 28-LIBGTOP_LIBS='-L$(libdir)' 29-LIBGTOP_INCS='-I$(includedir)/libgtop-2.0' 30+LIBGTOP_LIBS='-L=$(libdir)' 31+LIBGTOP_INCS='-I=$(includedir)/libgtop-2.0' 32 33 if test x$libgtop_have_sysinfo = xyes ; then 34 LIBGTOP_INCS="$LIBGTOP_INCS -DHAVE_LIBGTOP_SYSINFO" 35-- 362.26.2 37 38