* ltconfig: Shell portability fix for the tagname validity check.
This commit is contained in:
parent
dcc5e02d01
commit
05ea0b46f1
|
@ -1,3 +1,7 @@
|
||||||
|
2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>, Alexandre Oliva <oliva@lsd.ic.unicamp.br>
|
||||||
|
|
||||||
|
* ltconfig: Shell portability fix for the tagname validity check.
|
||||||
|
|
||||||
2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
|
2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
|
||||||
|
|
||||||
* ltcf-cxx.sh: Use parentheses around eval $ac_compile.
|
* ltcf-cxx.sh: Use parentheses around eval $ac_compile.
|
||||||
|
|
6
ltconfig
6
ltconfig
|
@ -422,8 +422,10 @@ fi
|
||||||
|
|
||||||
if test -n "$tagname"; then
|
if test -n "$tagname"; then
|
||||||
# Check whether tagname contains only valid characters
|
# Check whether tagname contains only valid characters
|
||||||
case "$tagname" in
|
case `$echo "X$tagname" |
|
||||||
*[!-_A-Za-z0-9,/]*)
|
$Xsed -e 's/[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]//g'` in
|
||||||
|
"") ;;
|
||||||
|
*)
|
||||||
echo "$progname: invalid tag name: $tagname" 1>&2
|
echo "$progname: invalid tag name: $tagname" 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in New Issue