Skip to content
Snippets Groups Projects
Commit ae18ff85 authored by Eric Vidal's avatar Eric Vidal :speech_balloon:
Browse files

fix gen-deps.sh for cross compilation

parent a8dc5a83
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,7 @@ for dir in $(ls -1 src | grep -v ^include) ; do
if echo $dep | grep -q -- \\.o$ ; then
dep="src/$dir/$dep"
fi
if echo $dep | grep -q -- '^\${.*_LIB}' ; then
if echo $dep | grep -q -e ^-l -e '^\${.*_LIB}' ; then
libs="$libs $dep"
else
deps="$deps $dep"
......
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