diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2016-10-24 13:19:59 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2016-10-24 13:19:59 +0000 |
commit | 03481d73a216c8168bd68d0af351c3d615b74002 (patch) | |
tree | 36872c5a4b6497efad4f318278aa16d62d1cda86 /tools | |
parent | 42da32a77b61fb2f601767fb19c461c4bd75462b (diff) | |
download | execline-03481d73a216c8168bd68d0af351c3d615b74002.tar.xz |
Fix stupid shared lib dependencies
Diffstat (limited to 'tools')
-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" |