Skip to content
Snippets Groups Projects
Commit 80e83652 authored by Florian Fainelli's avatar Florian Fainelli
Browse files

Invert logic, first search for find as most people will build under Linux

SVN-Revision: 12248
parent 65d4a5ea
No related branches found
No related tags found
No related merge requests found
......@@ -5,8 +5,8 @@
version=1.0
-
+FIND="$(which gfind)"
+FIND="${FIND:-$(which find)}"
+FIND="$(which find)"
+FIND="${FIND:-$(which gfind)}"
TAR="${TAR:-$(which tar)}"
ipkg_extract_value() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment