diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2016-10-24 14:52:47 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2016-10-24 14:52:47 +0000 |
commit | cb14cc1a4cbaf83f0ef21f04821763f91814aaa6 (patch) | |
tree | 33130f71e47d9e28a6d4c68d81e1a14c9614121c /tools/gen-deps.sh | |
parent | 064655c333d37bb838d47d19b141131fa90713c2 (diff) | |
download | s6-networking-cb14cc1a4cbaf83f0ef21f04821763f91814aaa6.tar.xz |
Revert wrong shared lib fix
Diffstat (limited to 'tools/gen-deps.sh')
-rwxr-xr-x | tools/gen-deps.sh | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/gen-deps.sh b/tools/gen-deps.sh index 2810ccc..5c96dd1 100755 --- a/tools/gen-deps.sh +++ b/tools/gen-deps.sh @@ -60,9 +60,6 @@ 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" |