Skip to content

Commit e1b7588

Browse files
committed
Simplified locale overrides
1 parent 3806fed commit e1b7588

File tree

1 file changed

+4
-14
lines changed

1 file changed

+4
-14
lines changed

variables.mk

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -309,17 +309,7 @@ bmark_timeout_cycles = 100000000
309309
# locale settings
310310
# some of the sbt/java commands will error on specific locales
311311
#########################################################################################
312-
export LANG=en_US.UTF-8
313-
export LC_CTYPE="en_US.UTF-8"
314-
export LC_NUMERIC="en_US.UTF-8"
315-
export LC_TIME="en_US.UTF-8"
316-
export LC_COLLATE="en_US.UTF-8"
317-
export LC_MONETARY="en_US.UTF-8"
318-
export LC_MESSAGES="en_US.UTF-8"
319-
export LC_PAPER="en_US.UTF-8"
320-
export LC_NAME="en_US.UTF-8"
321-
export LC_ADDRESS="en_US.UTF-8"
322-
export LC_TELEPHONE="en_US.UTF-8"
323-
export LC_MEASUREMENT="en_US.UTF-8"
324-
export LC_IDENTIFICATION="en_US.UTF-8"
325-
export LC_ALL=
312+
ENCODING="en_US.UTF-8"
313+
export LANG=$(ENCODING)
314+
export LANGUAGE="en_US:en"
315+
export LC_ALL=$(ENCODING)

0 commit comments

Comments
 (0)