diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2018-08-20 11:41:33 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2018-08-20 11:41:33 +0000 |
commit | 29bd7fd3ce371eaad00ffbb367071f1007f216d3 (patch) | |
tree | dc5273505911768a0afeaa34c1f7f24538924461 /configure | |
parent | 729d35a0cb19a203e3a030a050c6d084430fc202 (diff) | |
download | s6-networking-29bd7fd3ce371eaad00ffbb367071f1007f216d3.tar.xz |
Support conditional slashpackage builds
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 19 |
1 files changed, 13 insertions, 6 deletions
@@ -259,12 +259,19 @@ if $slashpackage ; then libdir=${home}/library libexecdir=$bindir includedir=${home}/include - while read dep ; do - addincpath="$addincpath -I${sproot}${dep}/include" - vpaths="$vpaths ${sproot}${dep}/library" - addlibspath="$addlibspath -L${sproot}${dep}/library" - vpathd="$vpathd ${sproot}${dep}/library.so" - addlibdpath="$addlibdpath -L${sproot}${dep}/library.so" + while read dep condvar ; do + if test -n "$condvar" ; then + eval "cond=$condvar" + else + cond=true + fi + if $cond ; then + addincpath="$addincpath -I${sproot}${dep}/include" + vpaths="$vpaths ${sproot}${dep}/library" + addlibspath="$addlibspath -L${sproot}${dep}/library" + vpathd="$vpathd ${sproot}${dep}/library.so" + addlibdpath="$addlibdpath -L${sproot}${dep}/library.so" + fi done < package/deps-build fi |