2019-03-19 05:26:36 +00:00
|
|
|
#!/bin/sh
|
2019-03-19 05:17:24 +00:00
|
|
|
|
2019-03-19 05:57:28 +00:00
|
|
|
set -e
|
|
|
|
|
2019-03-19 05:17:24 +00:00
|
|
|
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'
|
|
|
|
|
2019-03-29 23:52:22 +00:00
|
|
|
grep ^timestamp config.guess >/dev/null 2>&1 || cp package/config.guess .
|
|
|
|
grep ^timestamp config.sub >/dev/null 2>&1 || cp package/config.sub .
|
|
|
|
|
2019-03-24 17:26:52 +00:00
|
|
|
# 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
|