summaryrefslogtreecommitdiffstats
path: root/tools/ipkg-utils
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-12-13 10:53:57 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-12-13 10:53:57 +0000
commit3675f041ae278023a0469ca4328106eed1688fa9 (patch)
tree33c512df22a00710bec6ee3e79bc3ff5c7741308 /tools/ipkg-utils
parentf2ea91f2c1499e6e7a8962540385e821f19c2128 (diff)
Prevent the use of underscores in package names (#2801)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9724 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 debafb230..c0baa1f22 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