summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2022-08-20 09:20:56 +0000
committerLaurent Bercot <ska@appnovation.com>2022-08-20 09:20:56 +0000
commit28f5b4e7a5cce43198269f26583e66a232a976b5 (patch)
treea9fb8a49920db08193aa7ad2d88d533b8e1ea141 /tools
parent632acb58b77d08a384ada611b5ab1ebca96ff85d (diff)
downloads6-28f5b4e7a5cce43198269f26583e66a232a976b5.tar.xz
Factor s6_auto_write_logrun into a new libs6auto
libs6auto distinct from libs6 because of execline dep. Signed-off-by: Laurent Bercot <ska@appnovation.com>
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 cff90ad..befe021 100755
--- a/tools/gen-deps.sh
+++ b/tools/gen-deps.sh
@@ -72,7 +72,7 @@ for dir in $(ls -1 src | grep -v ^include) ; do
echo else
echo "lib${file}.a.xyzzy:$(echo "$deps" | sed 's/\.o/.lo/g')"
echo endif
- if grep -F "LIB_DEFS :=" package/targets.mak | grep -qF "$file" ; then
+ if grep -E "^LIB_DEFS [+:]=" package/targets.mak | grep -qF "$file" ; then
echo "lib${file}.so.xyzzy: EXTRA_LIBS :=$libs"
echo "lib${file}.so.xyzzy:$(echo "$deps" | sed 's/\.o/.lo/g')"
else