From 97231ac9a5ab2bf5566f7d50fcf309433a997359 Mon Sep 17 00:00:00 2001 From: mintsuki Date: Sat, 22 Jan 2022 05:08:28 +0100 Subject: [PATCH] build: Make automake *copy* missing files --- README.md | 4 ++-- autogen.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cbe548ab..057c277d 100644 --- a/README.md +++ b/README.md @@ -46,9 +46,9 @@ For example, to clone the latest binary release of the `v2.x` branch one can do ```bash git clone https://github.com/limine-bootloader/limine.git --branch=v2.0-branch-binary --depth=1 ``` -or, to clone a specific binary point release (for example v2.78) +or, to clone a specific binary point release (for example v2.78.1) ```bash -git clone https://github.com/limine-bootloader/limine.git --branch=v2.78-binary --depth=1 +git clone https://github.com/limine-bootloader/limine.git --branch=v2.78.1-binary --depth=1 ``` Additionally, the absolute latest Limine binary release can be obtained by diff --git a/autogen.sh b/autogen.sh index 9ef867e2..5cafff59 100755 --- a/autogen.sh +++ b/autogen.sh @@ -12,7 +12,7 @@ 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 -automake --add-missing || true +automake --add-missing --copy || true autoconf cd "$origdir"