summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-05-03 02:36:37 -0500
committerWaldemar Brodkorb <wbx@openadk.org>2015-05-03 02:36:37 -0500
commitf5709af4b77b431c023ef8fc67710870ec6eb510 (patch)
tree79c5bb3feb4f059792d7c6b7e2b8cdd2a7b98773 /mk
parent150ac85159e9d1877573f7ebc23bfaaa4a248b0b (diff)
fix overlapping regex
Diffstat (limited to 'mk')
-rw-r--r--mk/build.mk2
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