From 3590c4884e9a86a2e30cdbdd9c3b63b736659a35 Mon Sep 17 00:00:00 2001 From: Evan Miller Date: Tue, 25 Jun 2024 19:09:32 -0400 Subject: [PATCH] libxls: Update build.sh (#12123) The `bootstrap` script has been moved to `autogen.sh` https://github.com/libxls/libxls/commit/c1efc44e09bb49894c2199b7cc3262b61885a2ef --- projects/libxls/build.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/projects/libxls/build.sh b/projects/libxls/build.sh index a2b84cba5..29f01efb0 100644 --- a/projects/libxls/build.sh +++ b/projects/libxls/build.sh @@ -16,7 +16,11 @@ #!/bin/bash -eu -./bootstrap +if [ -f ./autogen.sh ]; then + ./autogen.sh +else + ./bootstrap +fi ./configure --enable-static make clean