diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-05-04 13:46:39 -0500 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-05-04 13:46:39 -0500 |
commit | dfa23794ff4530e370300cc57c5cc2122e217b90 (patch) | |
tree | 3a0570d59dc1e008f8757bc5b555da3cf4376245 | |
parent | f5709af4b77b431c023ef8fc67710870ec6eb510 (diff) |
32076 isn't right, use _ for the 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 013a61ce3..c377c00ff 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 |