OSDN Git Service

* ltconfig: Shell portability fix for the tagname validity check.
authormsokolov <msokolov@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 27 Jan 2001 19:48:46 +0000 (19:48 +0000)
committermsokolov <msokolov@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 27 Jan 2001 19:48:46 +0000 (19:48 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39299 138bc75d-0d04-0410-961f-82ee72b054a4

ChangeLog
ltconfig

index 145606f..b7715c4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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  Alexandre Oliva  <aoliva@redhat.com>
 
        * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
 2001-01-27  Alexandre Oliva  <aoliva@redhat.com>
 
        * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
index 168923f..889cf44 100755 (executable)
--- a/ltconfig
+++ b/ltconfig
@@ -422,8 +422,10 @@ fi
 
 if test -n "$tagname"; then
   # Check whether tagname contains only valid characters
 
 if test -n "$tagname"; then
   # Check whether tagname contains only valid characters
-  case "$tagname" in
-  *[!-_A-Za-z0-9,/]*)
+  case `$echo "X$tagname" |
+        $Xsed -e 's/[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]//g'` in
+  "") ;;
+  *)
     echo "$progname: invalid tag name: $tagname" 1>&2
     exit 1
     ;;
     echo "$progname: invalid tag name: $tagname" 1>&2
     exit 1
     ;;