Prevent the use of underscores in package names (#2801)
[openwrt/svn-archive/archive.git] / tools / ipkg-utils / patches / 150-uppercase_letters.patch
index debafb2303d0b9e0154a9ab60bec10438456f905..c0baa1f223ba94cd67db75555a9d7a091a404e1c 100644 (file)
@@ -7,7 +7,7 @@ Index: ipkg-utils-1.7/ipkg-build
        [ "$?" -ne 0 ] && PKG_ERROR=1
  
 -      if echo $pkg | grep '[^a-z0-9.+-]'; then
-+      if echo $pkg | grep '[^a-zA-Z0-9.+-]'; then
++      if echo $pkg | grep '[^a-zA-Z0-9_.+-]'; then
                echo "*** Error: Package name $name contains illegal characters, (other than [a-z0-9.+-])" >&2
                PKG_ERROR=1;
        fi