summaryrefslogtreecommitdiff
path: root/sim/common/Make-common.in
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2012-03-19 04:54:48 +0000
committerMike Frysinger <vapier@gentoo.org>2012-03-19 04:54:48 +0000
commit509deab2dcc19550953aa1c886b0f0cac7f9b8bd (patch)
tree350bb40f29ec39826d546fe44667422a45e88fd1 /sim/common/Make-common.in
parent9a5e0c494c2a828dc4d9223e5f4db61cda7df09f (diff)
downloadbinutils-gdb-509deab2dcc19550953aa1c886b0f0cac7f9b8bd.tar.gz
sim: use character classes rather than ranges
A-Z ranges don't work in all locales, so use character classes instead. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'sim/common/Make-common.in')
-rw-r--r--sim/common/Make-common.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in
index c11e51e3abb..1a3a6b684dc 100644
--- a/sim/common/Make-common.in
+++ b/sim/common/Make-common.in
@@ -518,7 +518,7 @@ tags etags: TAGS
# And the sim-n-foo.h files create functions that can't be found either.
TAGS: force
cd $(srcdir) && \
- etags --regex '/^\([a-z_]+\) (/\1/' --regex '/^\/[*] TAGS: .*/' \
+ etags --regex '/^\([[:lower:]_]+\) (/\1/' --regex '/^\/[*] TAGS: .*/' \
*.[ch] ../common/*.[ch]
clean: $(SIM_EXTRA_CLEAN)