lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

0001-build-always-use-lib-instead-of-lib64.patch (942B)


      1 From 1948dd03d69c1a50e92d7e8868b7d6eabd4873c1 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: always use /lib instead of /lib64.
      5 
      6 * configure.ac: OpenWrt does not use /lib64.
      7 
      8 Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
      9 ---
     10  configure.ac |   10 +---------
     11  1 file changed, 1 insertion(+), 9 deletions(-)
     12 
     13 diff --git a/configure.ac b/configure.ac
     14 index fd0e310..306b6e2 100644
     15 --- a/configure.ac
     16 +++ b/configure.ac
     17 @@ -25,15 +25,7 @@ dnl If we use /usr as prefix, use /etc for config files
     18          then
     19                  sysconfdir="/etc"
     20          fi
     21 -	if test ${libdir} = '${exec_prefix}/lib'
     22 -	then
     23 -		case "`uname -m`" in
     24 -		    x86_64|ppc64|s390x|sparc64)
     25 -			libdir="/lib64" ;;
     26 -		    *)
     27 -			libdir="/lib" ;;
     28 -		esac
     29 -	fi
     30 +	libdir="/lib"
     31  	if test ${sbindir} = '${exec_prefix}/sbin'
     32          then
     33                  sbindir="/sbin"
     34 -- 
     35 1.7.10.4
     36