summaryrefslogtreecommitdiffstats
path: root/scripts/libptxdist.sh
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2011-12-17 10:14:35 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2011-12-17 10:18:12 +0100
commit3e1208476d5359c1c447628fadd78d978d3e39c2 (patch)
tree5d6a44870967fd4530b5a47a80e4b3856312d7ae /scripts/libptxdist.sh
parentf80593cd4240ad9a36775347db86338eae37ff6b (diff)
downloadptxdist-3e1208476d5359c1c447628fadd78d978d3e39c2.tar.gz
ptxdist-3e1208476d5359c1c447628fadd78d978d3e39c2.tar.xz
ptxd_replace_magic: allow lowercase magic
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'scripts/libptxdist.sh')
-rw-r--r--scripts/libptxdist.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/libptxdist.sh b/scripts/libptxdist.sh
index af200b7b7..6373439e0 100644
--- a/scripts/libptxdist.sh
+++ b/scripts/libptxdist.sh
@@ -395,10 +395,10 @@ ptxd_make_log() {
#
ptxd_replace_magic() {
gawk '
-$0 ~ /@[A-Z0-9_]+@/ {
+$0 ~ /@[A-Za-z0-9_]+@/ {
line = $0
- while (match(line, "@[A-Z0-9_]+@")) {
+ while (match(line, "@[A-Za-z0-9_]+@")) {
var = substr(line, RSTART + 1, RLENGTH - 2);
line = substr(line, RSTART + RLENGTH);