mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 18:35:55 +02:00
Prevent the use of underscores in package names (#2801)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9724 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
f2ea91f2c1
commit
3675f041ae
@ -7,7 +7,7 @@ Index: ipkg-utils-1.7/ipkg-build
|
|||||||
[ "$?" -ne 0 ] && PKG_ERROR=1
|
[ "$?" -ne 0 ] && PKG_ERROR=1
|
||||||
|
|
||||||
- if echo $pkg | grep '[^a-z0-9.+-]'; then
|
- 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
|
echo "*** Error: Package name $name contains illegal characters, (other than [a-z0-9.+-])" >&2
|
||||||
PKG_ERROR=1;
|
PKG_ERROR=1;
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user