rulimine/autogen.sh

18 lines
343 B
Bash
Raw Normal View History

#! /bin/sh
2022-01-16 08:09:36 +03:00
set -ex
srcdir="$(realpath $(dirname "$0"))"
test -z "$srcdir" && srcdir=.
cd "$srcdir"
[ -d stivale ] || git clone https://github.com/stivale/stivale.git
[ -d reduced-gnu-efi ] || git clone https://github.com/limine-bootloader/reduced-gnu-efi.git
autoconf
if test -z "$NOCONFIGURE"; then
exec "$srcdir"/configure "$@"
fi