File: setup-configure

package info (click to toggle)
conserver 8.2.7-3.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,856 kB
  • sloc: ansic: 22,275; sh: 3,623; makefile: 285
file content (21 lines) | stat: -rwxr-xr-x 713 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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