diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-03-07 10:00:07 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-03-07 10:00:07 +0100 |
commit | 0e458d24cf9966545df239ef6559f81c49e4506e (patch) | |
tree | 554768276bdd94ded9e0802d63275818f4a5b3e9 | |
parent | b7804d3a77ad1d60bfcdabe18f38cf374e690721 (diff) |
fix regex matching. hard/soft is in the middle
-rw-r--r-- | mk/build.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/build.mk b/mk/build.mk index 0cc20a2e4..7bd5eeaff 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -440,7 +440,7 @@ endif fi @if [ ! -z "$(ADK_TARGET_FLOAT)" ];then \ grep "^config" target/config/Config.in.float.choice \ - |grep -i "$(ADK_TARGET_FLOAT)$$" \ + |grep -i "$(ADK_TARGET_FLOAT)" \ |sed -e "s#^config \(.*\)#\1=y#" \ >> $(ADK_TOPDIR)/.defconfig; \ fi |