libxls: Update build.sh (#12123)

The `bootstrap` script has been moved to `autogen.sh`


c1efc44e09
This commit is contained in:
Evan Miller 2024-06-25 19:09:32 -04:00 committed by GitHub
parent d63f82f8e2
commit 3590c4884e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -16,7 +16,11 @@
#!/bin/bash -eu
./bootstrap
if [ -f ./autogen.sh ]; then
./autogen.sh
else
./bootstrap
fi
./configure --enable-static
make clean