mirror of
https://github.com/falcosecurity/falco.git
synced 2025-10-22 03:49:36 +00:00
In their readme, jq claims that you don't have to do autoreconf -fi when downloading a released tarball. However, they forgot to push the released makefiles into their release tarbal. For this reason, we have to mirror their release after doing the configuration ourselves. This is needed because many distros do not ship the right version of autoreconf, making virtually impossible to build Falco on them. Here is how it was created: git clone https://github.com/stedolan/jq.git cd jq git checkout tags/jq-1.6 git submodule update --init autoreconf -fi Signed-off-by: Lorenzo Fontana <fontanalorenz@gmail.com>