mirror of
https://github.com/bstansell/conserver.git
synced 2025-01-05 12:34:09 +00:00
19 lines
568 B
Bash
Executable File
19 lines
568 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
curl -s -o config.guess 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess'
|
|
curl -s -o config.sub 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub'
|
|
|
|
# We set lang to avoid this with the gcc docker image on cirrus:
|
|
#
|
|
# ./package/setup-configure
|
|
# perl: warning: Setting locale failed.
|
|
# perl: warning: Please check that your locale settings:
|
|
# LANGUAGE = (unset),
|
|
# LC_ALL = (unset),
|
|
# LANG = "en_US.UTF-8"
|
|
# are supported and installed on your system.
|
|
|
|
LANG=C autoreconf
|