diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-05-03 02:36:37 -0500 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-05-03 02:36:37 -0500 |
commit | f5709af4b77b431c023ef8fc67710870ec6eb510 (patch) | |
tree | 79c5bb3feb4f059792d7c6b7e2b8cdd2a7b98773 | |
parent | 150ac85159e9d1877573f7ebc23bfaaa4a248b0b (diff) |
fix overlapping regex
-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 8bec78bb9..013a61ce3 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -434,7 +434,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 |