summaryrefslogtreecommitdiff
path: root/tools/ipkg-utils
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2007-12-13 10:53:57 +0000
committerFlorian Fainelli <florian@openwrt.org>2007-12-13 10:53:57 +0000
commit7d9713b97f2dacfcb8512a3c077f519ddf8f5e6f (patch)
tree45dcdd7696ceafc732381635a890d4fb810108cf /tools/ipkg-utils
parent51996a78f1abc9a57feeb98bf4cad6e8faec05a3 (diff)
downloadmtk-20170518-7d9713b97f2dacfcb8512a3c077f519ddf8f5e6f.zip
mtk-20170518-7d9713b97f2dacfcb8512a3c077f519ddf8f5e6f.tar.gz
mtk-20170518-7d9713b97f2dacfcb8512a3c077f519ddf8f5e6f.tar.bz2
Prevent the use of underscores in package names (#2801)
SVN-Revision: 9724
Diffstat (limited to 'tools/ipkg-utils')
-rw-r--r--tools/ipkg-utils/patches/150-uppercase_letters.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ipkg-utils/patches/150-uppercase_letters.patch b/tools/ipkg-utils/patches/150-uppercase_letters.patch
index debafb2..c0baa1f 100644
--- a/tools/ipkg-utils/patches/150-uppercase_letters.patch
+++ b/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