No Description

0001-build-use-host_cpu-for-lib64-directory-handling.patch 788B

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