summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2019-10-21 17:22:02 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2019-10-21 17:22:02 +0000
commitbb860115256409a89356406c424bd2aea04bb6db (patch)
tree072647ba5312619cc0d6b7d5bb2dcb7135e851c0 /tools
parenta684744fe4c7df2dc5d08fd242a103de25ae8c59 (diff)
downloadmdevd-bb860115256409a89356406c424bd2aea04bb6db.tar.xz
Fix gen-deps.sh for cross-builds
Diffstat (limited to 'tools')
-rwxr-xr-xtools/gen-deps.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gen-deps.sh b/tools/gen-deps.sh
index 6383ac2..27e5b3e 100755
--- a/tools/gen-deps.sh
+++ b/tools/gen-deps.sh
@@ -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"