diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-01-14 00:49:48 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-01-14 00:49:48 +0000 |
commit | b533774a704c271a6feeaef76939b0aefbf039d7 (patch) | |
tree | c05585d0ab1d76222f64ee47bdb52f7cd481f4e7 /tools | |
parent | ae319b6e2fa45f8c72707284004e23d9f05a83f3 (diff) | |
download | s6-dns-b533774a704c271a6feeaef76939b0aefbf039d7.tar.xz |
Parallel build fix
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/gen-deps.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gen-deps.sh b/tools/gen-deps.sh index 5824dd6..2f7c57d 100755 --- a/tools/gen-deps.sh +++ b/tools/gen-deps.sh @@ -71,7 +71,7 @@ for dir in $(ls -1 src | grep -v ^include) ; do if echo $dep | grep -q -- \\.o$ ; then dep="src/$dir/$dep" fi - if echo $dep | grep -q ^\\\$ ; then + if echo $dep | grep -q '^\${.*_LIB}' ; then libs="$libs $dep" else deps="$deps $dep" |