diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2016-10-24 13:26:17 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2016-10-24 13:26:17 +0000 |
commit | 8cf29e3ff410912dcc00fd4507eb95c7a9ff27b0 (patch) | |
tree | 11852566da982fc256f1352094737b74465187e8 /tools/gen-deps.sh | |
parent | a4066cb926f1b59ae141ede8036752e11b2a956c (diff) | |
download | s6-rc-8cf29e3ff410912dcc00fd4507eb95c7a9ff27b0.tar.xz |
Fix stupid shared lib dependencies
Diffstat (limited to 'tools/gen-deps.sh')
-rwxr-xr-x | tools/gen-deps.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/gen-deps.sh b/tools/gen-deps.sh index 5c96dd1..2810ccc 100755 --- a/tools/gen-deps.sh +++ b/tools/gen-deps.sh @@ -60,6 +60,9 @@ for dir in $(ls -1 src | grep -v ^include) ; do libs= while read dep ; do if echo $dep | grep -q -e ^-l -e '^\${.*_LIB}' ; then + if test $dep = '-lskarnet' ; then + dep='-lskarnet ${SPAWN_LIB} ${SOCKET_LIB} ${SYSCLOCK_LIB} ${TAINNOW_LIB} ${TIMER_LIB} ${UTIL_LIB}' + fi libs="$libs $dep" else deps="$deps src/$dir/$dep" |