mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-06 14:00:36 +01:00
get rid of an illegal characters warning with packages that contain uppercase characters
SVN-Revision: 14810
This commit is contained in:
parent
11cf9ea728
commit
d38153a847
1 changed files with 2 additions and 2 deletions
|
|
@ -595,8 +595,8 @@ ipkg_depends() {
|
|||
all_deps="$all_deps $new_pkgs"
|
||||
local new_deps=
|
||||
for pkg in $new_pkgs; do
|
||||
if echo $pkg | grep -q '[^a-z0-9.+-]'; then
|
||||
echo "ipkg_depends: ERROR: Package name $pkg contains illegal characters (should be [a-z0-9.+-])" >&2
|
||||
if echo $pkg | grep -q '[^A-Za-z0-9.+-]'; then
|
||||
echo "ipkg_depends: ERROR: Package name $pkg contains illegal characters (should be [A-Za-z0-9.+-])" >&2
|
||||
return 1
|
||||
fi
|
||||
# TODO: Fix this. For now I am ignoring versions and alternations in dependencies.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue