diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-01-14 00:50:25 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-01-14 00:50:25 +0000 |
commit | 018fc90f1c1e3b50b982cc671bba5fcc4235e020 (patch) | |
tree | 79c59582d3640509bc4150e56283c4cfb1d47007 /tools/gen-deps.sh | |
parent | bd33aa8c2afeb3e747fdb4cd57f07fb6b1a01c7d (diff) | |
download | s6-networking-018fc90f1c1e3b50b982cc671bba5fcc4235e020.tar.xz |
- Parallel build fixv2.0.1.0
- Version updated to 2.0.1.0, release candidate
Diffstat (limited to 'tools/gen-deps.sh')
-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" |