1From 8f3ed8df4721991958a5becf75a69493d67e7514 Mon Sep 17 00:00:00 2001
2From: "Roy.Li" <rongqing.li@windriver.com>
3Date: Tue, 5 Sep 2017 10:24:10 +0800
4Subject: [PATCH] [PATCH] do not use the hardcode libdir
5
6Upstream-Status: Pending
7
8Signed-off-by: Roy.Li <rongqing.li@windriver.com>
9Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
10
11---
12 configure.ac | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/configure.ac b/configure.ac
16index 00b359e..ba50e6f 100644
17--- a/configure.ac
18+++ b/configure.ac
19@@ -114,7 +114,7 @@ if test "$with_libpq" != yes; then
20 	if test -d "$with_libpq"; then
21 		PATH="$with_libpq/bin:$PATH"
22 		CPPFLAGS="$CPPFLAGS -I$with_libpq/include -I$with_libpq/include/postgresql/internal"
23-		LDFLAGS="$LDFLAGS -L$with_libpq/lib"
24+		LDFLAGS="$LDFLAGS -L$with_libpq/${base_libdir}"
25 	else
26 		if test -x "$with_libpq"; then
27 			PG_CONFIG=$with_libpq
28