فهرست منبع

Prevent the use of underscores in package names (#2801)

SVN-Revision: 9724
Florian Fainelli 18 سال پیش
والد
کامیت
7d9713b97f
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      tools/ipkg-utils/patches/150-uppercase_letters.patch

+ 1 - 1
tools/ipkg-utils/patches/150-uppercase_letters.patch

@@ -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