mirror of
https://github.com/containers/crun.git
synced 2026-02-05 06:45:40 +01:00
12 lines
205 B
Bash
Executable File
12 lines
205 B
Bash
Executable File
#!/bin/sh
|
|
if ! (pkg-config --version > /dev/null 2>&1); then
|
|
echo "pkg-config not found. Please install it">&2
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p m4
|
|
|
|
git submodule update --init --recursive
|
|
|
|
exec autoreconf -fi
|