summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2015-11-05 20:56:19 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2015-11-05 20:56:33 +0100
commit13b3b0a00d7920ed564ec567c04a939e2e43a8d6 (patch)
treec03f8136532dc8a9740230add2d638600039e896 /scripts
parent9bba838316cc5aeca29c12ec7feb71a6edaa9737 (diff)
there is no find wrapper, so build findutils even if gfind is available
Diffstat (limited to 'scripts')
-rw-r--r--scripts/scan-tools.sh8
1 files changed, 3 insertions, 5 deletions
diff --git a/scripts/scan-tools.sh b/scripts/scan-tools.sh
index 835606e60..9694fbb30 100644
--- a/scripts/scan-tools.sh
+++ b/scripts/scan-tools.sh
@@ -272,11 +272,9 @@ if ! which gxargs >/dev/null 2>&1; then
fi
fi
-if ! which gfind >/dev/null 2>&1; then
- if which find >/dev/null 2>&1; then
- if ! find --version 2>/dev/null|grep GNU >/dev/null;then
- host_build_findutils=1
- fi
+if which find >/dev/null 2>&1; then
+ if ! find --version 2>/dev/null|grep GNU >/dev/null;then
+ host_build_findutils=1
fi
fi