summaryrefslogtreecommitdiff
path: root/mk/build.mk
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-10-21 11:09:56 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2015-10-21 11:09:56 +0200
commitd1ed1167064bca7a566f48d834be71ecb5101646 (patch)
treebcead35540b3bb7cbbece513a68fd04502cf4fdd /mk/build.mk
parent254a34e309cc29bb00c4678ada8fccda4727bd0d (diff)
preselection of symbols
Diffstat (limited to 'mk/build.mk')
-rw-r--r--mk/build.mk10
1 files changed, 5 insertions, 5 deletions
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; \