Skip to content

Commit

Permalink
build: use LC_ALL=en_US.UTF-8 in configure script
Browse files Browse the repository at this point in the history
On SmartOS 16, at least in our CI environment, LC_ALL cannot be set to
en_US, so the configuration script fails. Use en_US.UTF-8 instead.
  • Loading branch information
Trott committed Jun 8, 2018
1 parent 6ac3c44 commit 33832df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ def get_xcode_version(cc):
def get_gas_version(cc):
try:
custom_env = os.environ.copy()
custom_env["LC_ALL"] = "en_US"
custom_env["LC_ALL"] = "en_US.UTF-8"
proc = subprocess.Popen(shlex.split(cc) + ['-Wa,-v', '-c', '-o',
'/dev/null', '-x',
'assembler', '/dev/null'],
Expand Down

0 comments on commit 33832df

Please sign in to comment.