diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-12-01 06:26:36 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-12-01 06:26:36 +0100 |
commit | dc753e6e400693c2fba53f441746204f91c436b9 (patch) | |
tree | 2760a791f6f24451c147a4b29f928404d953a4f4 | |
parent | c5b739d7f243933b448337439a8068c08ca1083c (diff) |
use adk host sed for mac, no sed wrapper
-rw-r--r-- | scripts/scan-tools.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/scripts/scan-tools.sh b/scripts/scan-tools.sh index 9694fbb30..17e8c0395 100644 --- a/scripts/scan-tools.sh +++ b/scripts/scan-tools.sh @@ -291,11 +291,9 @@ if ! which gawk >/dev/null 2>&1; then fi host_build_sed=0 -if ! which gsed >/dev/null 2>&1; then - if which sed >/dev/null 2>&1; then - if ! sed --version 2>/dev/null|grep GNU >/dev/null;then - host_build_sed=1 - fi +if which sed >/dev/null 2>&1; then + if ! sed --version 2>/dev/null|grep GNU >/dev/null;then + host_build_sed=1 fi fi |