summaryrefslogtreecommitdiff
path: root/pkg/ffmpeg
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2018-11-12 12:13:37 -0800
committerMichael Forney <mforney@mforney.org>2018-11-12 12:14:21 -0800
commitbcd889d2c9969a1b6cb538a763f4813d1891446f (patch)
tree0c56b2bd34347c5d5e38a1ce832fc89f13c22eff /pkg/ffmpeg
parentdebf553c14c519d4ca1851af0227ffe694ddc4f6 (diff)
Call lua as lua5.2 to make sure we get the right version
Diffstat (limited to 'pkg/ffmpeg')
-rw-r--r--pkg/ffmpeg/gen.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/ffmpeg/gen.lua b/pkg/ffmpeg/gen.lua
index 08b66b13..0ed43b97 100644
--- a/pkg/ffmpeg/gen.lua
+++ b/pkg/ffmpeg/gen.lua
@@ -46,7 +46,7 @@ build('awk', '$outdir/include/libavutil/avconfig.h', {'$dir/options.h', '|', '$d
expr='-f $dir/avconfig.awk',
})
-rule('genlist', 'lua $dir/list.lua $dir/options.h $type $var <$in >$out.tmp && mv $out.tmp $out')
+rule('genlist', 'lua5.2 $dir/list.lua $dir/options.h $type $var <$in >$out.tmp && mv $out.tmp $out')
local function genlist(out, src, type, var)
build('genlist', out, {src, '|', '$dir/list.lua', '$dir/options.h'}, {type=type, var=var})
table.insert(pkg.deps, out)