mirror of
https://github.com/bstansell/conserver.git
synced 2024-12-21 05:43:10 +00:00
22 lines
713 B
Bash
Executable File
22 lines
713 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'
|
|
|
|
grep ^timestamp config.guess >/dev/null 2>&1 || cp package/config.guess .
|
|
grep ^timestamp config.sub >/dev/null 2>&1 || cp package/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
|