mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-22 06:41:17 +00:00
deptest: Add sanity check to avoid trouble with illegal package names
SVN-Revision: 23819
This commit is contained in:
parent
57ccc7e834
commit
1e317e8f43
@ -36,6 +36,8 @@ die()
|
||||
test_package() # $1=pkgname
|
||||
{
|
||||
local pkg="$1"
|
||||
[ -z "$(echo "$pkg" | grep -e '/')" -a "$pkg" != "." -a "$pkg" != ".." ] || \
|
||||
die "Package name \"$pkg\" contains illegal characters"
|
||||
local SELECTED=
|
||||
for conf in `grep CONFIG_PACKAGE tmp/.packagedeps | grep -E "[ /]$pkg\$" | sed -e 's,package-$(\(CONFIG_PACKAGE_.*\)).*,\1,'`; do
|
||||
grep "$conf=" .config > /dev/null && SELECTED=1 && break
|
||||
|
Loading…
Reference in New Issue
Block a user