diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-02-22 23:36:08 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-02-22 23:36:08 +0200 |
commit | 623485504abc2f256f51f49370f24b1e35dce1cb (patch) | |
tree | e37efb75b6cdb112aeefe5332cfaf5bfe7cc679a /test/Makefile.in | |
parent | f6bbdea8c4e2d3bd13cbbddd65fe67bcd7621fd2 (diff) | |
download | egawk-623485504abc2f256f51f49370f24b1e35dce1cb.tar.gz egawk-623485504abc2f256f51f49370f24b1e35dce1cb.tar.bz2 egawk-623485504abc2f256f51f49370f24b1e35dce1cb.zip |
Locale fix for error message comparison.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 33967b0e..402d9406 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -1751,7 +1751,7 @@ beginfile1:: beginfile2: @echo $@ - @-( cd $(srcdir) && AWK="$(abs_builddir)/$(AWKPROG)" $(srcdir)/$@.sh $(srcdir)/$@.in ) > _$@ 2>&1 + @-( cd $(srcdir) && LC_ALL=C AWK="$(abs_builddir)/$(AWKPROG)" $(srcdir)/$@.sh $(srcdir)/$@.in ) > _$@ 2>&1 @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ dumpvars:: @@ -1786,7 +1786,7 @@ posix2008sub: next: @echo $@ @-AWK="$(AWKPROG)" $(srcdir)/$@.sh > _$@ 2>&1 - @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ + @-LC_ALL=C $(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ exit: @echo $@ |