build: Add missing mandatory build-time dependency

Commit bafbbe81c9 started generating the shell completions at
build-time using the 'toolbox completion' command, and toolbox(1)
doesn't start without podman(1).

Fallout from bafbbe81c9

https://github.com/containers/toolbox/pull/1194
This commit is contained in:
Debarshi Ray 2022-12-08 17:45:18 +01:00
parent 7375be82d0
commit f3e005d014

View file

@ -15,6 +15,7 @@ endif
go = find_program('go')
go_md2man = find_program('go-md2man')
podman = find_program('podman')
codespell = find_program('codespell', required: false)
shellcheck = find_program('shellcheck', required: false)