Skip to content

Commit

Permalink
really support multiple packages blacklisted
Browse files Browse the repository at this point in the history
  • Loading branch information
boyska committed Jun 15, 2015
1 parent 978cd31 commit adae830
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auto/build
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ _build_packages() {
find -L pkgs -maxdepth 1 -mindepth 1 -type d | \
while read pkg; do
skipbuild=0
for toskip in "${LB_SKIP_PKGS:-}"; do
for toskip in ${LB_SKIP_PKGS:-}; do
[[ "$(basename $pkg)" = $toskip ]] && skipbuild=1
done
if [[ $skipbuild -eq 1 ]] ; then
Expand Down

0 comments on commit adae830

Please sign in to comment.