Bug#23721: compile fails: check-cpu mishandles cpu flags with \

hyphen in it (like ds-cpl).

convert illegal chars in cpu flags to '_' for variable assignment
This commit is contained in:
cmiller@zippy.cornsilk.net 2007-01-17 13:22:50 -05:00
parent 26c0934ee3
commit 332f9ff8b4
2 changed files with 2 additions and 1 deletions

View File

@ -28,7 +28,7 @@ check_cpu () {
fi
# parse CPU flags
for flag in `$cpuinfo | grep '^flags' | sed -e 's/^flags.*: //'`; do
for flag in `$cpuinfo | grep '^flags' | sed -e 's/^flags.*: //' -e 's/[^a-zA-Z0-9_ ]/_/g'`; do
eval cpu_flag_$flag=yes
done
else

View File

@ -3,3 +3,4 @@
454f8960jsVT_kMKJtZ9OCgXoba0xQ
4554a95d7txO1DuO9G3nAizI3SkFAA
4554b3722d71SbPiI2Gx-RhbZjmuIQ
45ae6628gqKTsUFfnoNExadETVIkbA