aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2025-10-26 10:50:22 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2025-10-26 10:50:22 +0000
commitaf1a9923d1fc79e76197059251d6f54fc0082db5 (patch)
tree88f40b68530cc56a17e435660c0e591087155103
parent6c0957eb5e8eea2ffada4d7be08286f0e81d0527 (diff)
downloadexecline-af1a9923d1fc79e76197059251d6f54fc0082db5.tar.gz
fix gen-deps.sh
-rwxr-xr-xtools/gen-deps.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/gen-deps.sh b/tools/gen-deps.sh
index aa84388..134484b 100755
--- a/tools/gen-deps.sh
+++ b/tools/gen-deps.sh
@@ -61,10 +61,8 @@ for dir in $(ls -1 src | grep -v ^include) ; do
deps=
libs=
while read dep ; do
- if echo $dep | grep -q -e '^-l' -e '^\${.*_LIB}' ; then
+ if echo $dep | grep -q -e '^\${LIB' -e '^-l' -e '^\${.*_LIB}' ; then
libs="$libs $dep"
- elif echo $dep | grep -q '^\${LIB' ; then
- deps="$deps $dep"
else
deps="$deps src/$dir/$dep"
fi