logo

oasis

Own branch of Oasis Linux (upstream: <https://git.sr.ht/~mcf/oasis/>) git clone https://anongit.hacktivis.me/git/oasis.git
commit: a81f49ae2cdda116a45e8e97cb46cbc5ca7de677
parent ec86e05e61d2141da06802133967bbe4a98f04e5
Author: Michael Forney <mforney@mforney.org>
Date:   Tue,  2 Feb 2021 00:19:38 -0800

dav1d: Fix name of dependency target

Diffstat:

Mpkg/dav1d/gen.lua2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkg/dav1d/gen.lua b/pkg/dav1d/gen.lua @@ -124,7 +124,7 @@ local tmpl = paths[[ for _, bit in ipairs{'8', '16'} do for _, src in ipairs(tmpl) do local obj = ('$outdir/%s/%s.o'):format(bit, src) - build('cc', obj, {'$srcdir/src/'..src, '||', '$dir/deps'}, {cflags='$cflags -D BITDEPTH='..bit}) + build('cc', obj, {'$srcdir/src/'..src, '||', '$gendir/deps'}, {cflags='$cflags -D BITDEPTH='..bit}) table.insert(srcs, obj) end end