projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d5b642
)
Fix lower casing for weird locales.
author
Matt Kraai
<kraai@debian.org>
Tue, 26 Dec 2000 16:36:10 +0000
(16:36 -0000)
committer
Matt Kraai
<kraai@debian.org>
Tue, 26 Dec 2000 16:36:10 +0000
(16:36 -0000)
applets/busybox.sh
patch
|
blob
|
history
busybox.sh
patch
|
blob
|
history
diff --git
a/applets/busybox.sh
b/applets/busybox.sh
index 6c91e539b34ad2e66c9261a2bc7e0e24825afaa5..547aca4774f8d1b1174cc587b890c7ff2dc4a4b4 100755
(executable)
--- a/
applets/busybox.sh
+++ b/
applets/busybox.sh
@@
-3,7
+3,7
@@
RAW=` \
gcc -E -dM ${1:-Config.h} | \
sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/\1.c/gp;' \
- | tr
'[:upper:]' '[:lower:]'
| sort
+ | tr
A-Z a-z
| sort
`
test "${RAW}" != "" || exit
cd ${2:-.}
diff --git
a/busybox.sh
b/busybox.sh
index 6c91e539b34ad2e66c9261a2bc7e0e24825afaa5..547aca4774f8d1b1174cc587b890c7ff2dc4a4b4 100755
(executable)
--- a/
busybox.sh
+++ b/
busybox.sh
@@
-3,7
+3,7
@@
RAW=` \
gcc -E -dM ${1:-Config.h} | \
sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/\1.c/gp;' \
- | tr
'[:upper:]' '[:lower:]'
| sort
+ | tr
A-Z a-z
| sort
`
test "${RAW}" != "" || exit
cd ${2:-.}