diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-12-30 22:02:32 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-12-30 22:02:32 +0200 |
commit | 6b76f3d292993fe2a15a515d078726cd68fd78d8 (patch) | |
tree | aceb5fa96907656938f6064d245e86c46b4cec90 | |
parent | aedc94b6eeb554b7e0f4eeeeb4a93db19e897607 (diff) | |
download | egawk-6b76f3d292993fe2a15a515d078726cd68fd78d8.tar.gz egawk-6b76f3d292993fe2a15a515d078726cd68fd78d8.tar.bz2 egawk-6b76f3d292993fe2a15a515d078726cd68fd78d8.zip |
Fix ignrcas2 test to use right locale.
-rw-r--r-- | test/ChangeLog | 6 | ||||
-rw-r--r-- | test/Makefile.am | 2 | ||||
-rw-r--r-- | test/Makefile.in | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 378c6ae3..c941f51c 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,9 @@ +2013-12-30 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (ignrcas2): Change to use en_US.UTF-8; it + seems that plain en_US doesn't exist anymore. Thanks to + Richard Palo. + 2013-12-10 Arnold D. Robbins <arnold@skeeve.com> * Makefile.am: Remove instances of "" that were incorrect. diff --git a/test/Makefile.am b/test/Makefile.am index fb265747..371a13ea 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1452,7 +1452,7 @@ widesub4:: ignrcas2:: @echo $@ - @GAWKLOCALE=en_US ; export GAWKLOCALE ; \ + @GAWKLOCALE=en_US.UTF-8 ; export GAWKLOCALE ; \ $(AWK) -f "$(srcdir)"/$@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >> _$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ diff --git a/test/Makefile.in b/test/Makefile.in index 421767b4..c2efe1ed 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -1876,7 +1876,7 @@ widesub4:: ignrcas2:: @echo $@ - @GAWKLOCALE=en_US ; export GAWKLOCALE ; \ + @GAWKLOCALE=en_US.UTF-8 ; export GAWKLOCALE ; \ $(AWK) -f "$(srcdir)"/$@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >> _$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ |