diff options
author | ache <ache@FreeBSD.org> | 2003-08-04 15:34:38 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2003-08-04 15:34:38 +0000 |
commit | 3aa7104cdf105c3e94de1da9d5879d18cea6c63d (patch) | |
tree | 3931f886e3189a3d12a3dd144a767d0e9bfad57c /gnu | |
parent | 6d81d82b79f267a7bec4d8b49f9d2fc0728afc85 (diff) | |
download | FreeBSD-src-3aa7104cdf105c3e94de1da9d5879d18cea6c63d.zip FreeBSD-src-3aa7104cdf105c3e94de1da9d5879d18cea6c63d.tar.gz |
Use LANG=C before tr to be sure that ranges are correct
Strip [] from ranges
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/groff/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/groff/Makefile.inc b/gnu/usr.bin/groff/Makefile.inc index 091c4c1..6eadfcc 100644 --- a/gnu/usr.bin/groff/Makefile.inc +++ b/gnu/usr.bin/groff/Makefile.inc @@ -125,7 +125,7 @@ revision=`sed -e 's/^0$$//' -e 's/^[1-9].*$$/.&/' $(GROFF_DIST)/REVISION` -e "s;@VERSION@;$(version)$(revision);g" \ -e "s;@MDATE@;`$(SHELL) ${GROFF_DIST}/mdate.sh $<`;g" \ -e "s;@g@;$(g);g" \ - -e "s;@G@;`echo $(g) | tr [a-z] [A-Z]`;g" \ + -e "s;@G@;`echo $(g) | LANG=C tr a-z A-Z`;g" \ $< >$@ .SUFFIXES: .sh .pl |