Diego Biurrun <[email protected]> writes: > Sometimes it can be useful to build not just the default target, but some > different target or a list of targets in addition to the default one. > If the make_targets variable is set, that list of targets is built, > otherwise just the default target is built as usual. > --- > tests/fate.sh | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/tests/fate.sh b/tests/fate.sh > index 7b1823c..6831f81 100755 > --- a/tests/fate.sh > +++ b/tests/fate.sh > @@ -61,7 +61,7 @@ configure()( > > compile()( > cd ${build} || return > - ${make} ${makeopts} && ${make} install > + ${make} ${makeopts} ${make_targets} && ${make} install > ) > > fate()( > --
This is the wrong way to accomplish what you want. -- Måns Rullgård [email protected] _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
