12345678910111213141516171819202122232425262728 |
- From ee916fd0ec70eb37a97da29f6ec0c26bef7cf6f2 Mon Sep 17 00:00:00 2001
- From: Yousong Zhou <yszhou4tech@gmail.com>
- Date: Wed, 17 Jun 2015 16:11:31 +0800
- Subject: [PATCH 1/7] build: use $host_cpu for lib64 directory handling.
-
- * configure.ac: use $host_cpu for lib64 directory handling.
-
- Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
-
- configure.ac | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
- diff --git a/configure.ac b/configure.ac
- index fd0e310..1bc2591 100644
-
-
- @@ -27,7 +27,7 @@ dnl If we use /usr as prefix, use /etc for config files
- fi
- if test ${libdir} = '${exec_prefix}/lib'
- then
- - case "`uname -m`" in
- + case "$host_cpu" in
- x86_64|ppc64|s390x|sparc64)
- libdir="/lib64" ;;
- *)
- --
- 1.7.10.4
|