From d1ed1167064bca7a566f48d834be71ecb5101646 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 21 Oct 2015 11:09:56 +0200 Subject: preselection of symbols --- mk/build.mk | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'mk/build.mk') diff --git a/mk/build.mk b/mk/build.mk index 9e6b97b24..5423e3484 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -420,26 +420,26 @@ endif >> $(ADK_TOPDIR)/.defconfig; \ fi @if [ ! -z "$(ADK_TARGET_ABI)" ];then \ - grep "^config" target/config/Config.in.abi.choice \ + grep "^config" target/config/Config.in.abi \ |grep -i "$(ADK_TARGET_ABI)$$" \ |sed -e "s#^config \(.*\)#\1=y#" \ >> $(ADK_TOPDIR)/.defconfig; \ fi @if [ ! -z "$(ADK_TARGET_FLOAT)" ];then \ - grep "^config" target/config/Config.in.float.choice \ + grep "^config" target/config/Config.in.float \ |grep -i "$(ADK_TARGET_FLOAT)_" \ |sed -e "s#^config \(.*\)#\1=y#" \ >> $(ADK_TOPDIR)/.defconfig; \ fi @if [ ! -z "$(ADK_TARGET_ENDIAN)" ];then \ - grep "^config" target/config/Config.in.endian.choice \ + grep "^config" target/config/Config.in.endian \ |grep -i "$(ADK_TARGET_ENDIAN)" \ |sed -e "s#^config \(.*\)#\1=y#" \ >> $(ADK_TOPDIR)/.defconfig; \ fi @if [ ! -z "$(ADK_TARGET_LIBC)" ];then \ libc=$$(echo "$(ADK_TARGET_LIBC)"|sed -e "s/-/_/"); \ - grep "^config" target/config/Config.in.libc.choice \ + grep "^config" target/config/Config.in.libc \ |grep -i "$$libc$$" \ |sed -e "s#^config \(.*\)#\1=y#" \ >> $(ADK_TOPDIR)/.defconfig; \ @@ -506,7 +506,7 @@ endif >> $(ADK_TOPDIR)/all.config; \ fi @if [ ! -z "$(ADK_TARGET_LIBC)" ];then \ - grep "^config" target/config/Config.in.libc.choice \ + grep "^config" target/config/Config.in.libc \ |grep -i "$(ADK_TARGET_LIBC)" \ |sed -e "s#^config \(.*\)#\1=y#" \ >> $(ADK_TOPDIR)/all.config; \ -- cgit v1.2.3