blob: 2295e415cdb8b06ad59f6670f62e867c188f72d0 [file] [log] [blame]
Patrick Williamsddad1a12017-02-23 20:36:32 -06001Upstream-Status: Inappropriate [configuration]
2
3projlibdir use a hard coded lib path, this will cause error when build a 64bit
4target. So change it to suitable path.
5
6Signed-off-by: Song.Li <Song.Li@windriver.com>
7Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
8Signed-off-by: Kai Kang <kai.kang@windriver.com>
9---
10 configure.ac | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/configure.ac b/configure.ac
14index 38e2b9c..bc6b996 100644
15--- a/configure.ac
16+++ b/configure.ac
17@@ -188,7 +188,7 @@ AS_IF([test x"$enable_fhs" = xyes], [
18 fi
19
20 sbindir='${exec_prefix}/bin' # /var/cfengine/bin despite being sbin_?
21- projlibdir='${exec_prefix}/lib'
22+ projlibdir='${libdir}'
23 mandir='${exec_prefix}/share/man'
24 ])
25
26--
271.7.1
28