From 78c19a3bd33486431a8370a895790c183fc8a7b5 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 23 May 2014 16:47:13 +0200 Subject: fix arch lists --- mk/build.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'mk') diff --git a/mk/build.mk b/mk/build.mk index 79e090289..91e45a17c 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -309,25 +309,25 @@ endif @for symbol in ${DEFCONFIG}; do \ echo $$symbol >> $(TOPDIR)/.defconfig; \ done - if [ ! -z "$(ADK_TARGET_FS)" ];then \ + @if [ ! -z "$(ADK_TARGET_FS)" ];then \ grep "^config" target/config/Config.in.target \ |grep -i "$(ADK_TARGET_FS)" \ |sed -e "s#^config \(.*\)#\1=y#" \ >> $(TOPDIR)/.defconfig; \ fi - if [ ! -z "$(ADK_TARGET_COLLECTION)" ];then \ + @if [ ! -z "$(ADK_TARGET_COLLECTION)" ];then \ grep -h "^config" target/packages/pkg-available/* \ |grep -i "$(ADK_TARGET_COLLECTION)" \ |sed -e "s#^config \(.*\)#\1=y#" \ >> $(TOPDIR)/.defconfig; \ fi - if [ ! -z "$(ADK_TARGET_LIBC)" ];then \ + @if [ ! -z "$(ADK_TARGET_LIBC)" ];then \ grep "^config" target/config/Config.in.libc.choice \ |grep -i "$(ADK_TARGET_LIBC)" \ |sed -e "s#^config \(.*\)#\1=y#" \ >> $(TOPDIR)/.defconfig; \ fi - if [ ! -z "$(ADK_TARGET_SYSTEM)" ];then \ + @if [ ! -z "$(ADK_TARGET_SYSTEM)" ];then \ system=$$(echo "$(ADK_TARGET_SYSTEM)" |sed -e "s/-/_/g"); \ grep -h "^config" target/*/Config.in.systems \ |grep -i "$$system$$" \ -- cgit v1.2.3