summaryrefslogtreecommitdiff
path: root/scripts/checkkconfigsymbols.sh
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2010-08-10 00:02:33 (GMT)
committerNeilBrown <neilb@suse.de>2010-08-10 00:02:33 (GMT)
commitfd8aa2c1811bf60ccb2d5de0579c6f62aec1772d (patch)
tree311567d03758afc3a93b4273fe172836e89bb01d /scripts/checkkconfigsymbols.sh
parent6e17b0276452912cb13445e5ea552b599984675f (diff)
parent2144381da478cc4aa3a29ee29b0c5e6ddaaced14 (diff)
downloadlinux-fsl-qoriq-fd8aa2c1811bf60ccb2d5de0579c6f62aec1772d.tar.xz
Merge git://git.infradead.org/users/dwmw2/libraid-2.6 into for-linus
Diffstat (limited to 'scripts/checkkconfigsymbols.sh')
-rwxr-xr-xscripts/checkkconfigsymbols.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkkconfigsymbols.sh b/scripts/checkkconfigsymbols.sh
index 46be3c5..2ca49bb 100755
--- a/scripts/checkkconfigsymbols.sh
+++ b/scripts/checkkconfigsymbols.sh
@@ -14,7 +14,7 @@ find $paths -name '*.[chS]' -o -name 'Makefile' -o -name 'Makefile*[^~]'| while
do
# Output the bare Kconfig variable and the filename; the _MODULE part at
# the end is not removed here (would need perl an not-hungry regexp for that).
- sed -ne 's!^.*\<\(UML_\)\?CONFIG_\([0-9A-Z_]\+\).*!\2 '$i'!p' < $i
+ sed -ne 's!^.*\<\(UML_\)\?CONFIG_\([0-9A-Za-z_]\+\).*!\2 '$i'!p' < $i
done | \
# Smart "sort|uniq" implemented in awk and tuned to collect the names of all
# files which use a given symbol