mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
deptest: Add sanity check to avoid trouble with illegal package names
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23819 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -36,6 +36,8 @@ die()
|
|||||||
test_package() # $1=pkgname
|
test_package() # $1=pkgname
|
||||||
{
|
{
|
||||||
local pkg="$1"
|
local pkg="$1"
|
||||||
|
[ -z "$(echo "$pkg" | grep -e '/')" -a "$pkg" != "." -a "$pkg" != ".." ] || \
|
||||||
|
die "Package name \"$pkg\" contains illegal characters"
|
||||||
local SELECTED=
|
local SELECTED=
|
||||||
for conf in `grep CONFIG_PACKAGE tmp/.packagedeps | grep -E "[ /]$pkg\$" | sed -e 's,package-$(\(CONFIG_PACKAGE_.*\)).*,\1,'`; do
|
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
|
grep "$conf=" .config > /dev/null && SELECTED=1 && break
|
||||||
|
|||||||
Reference in New Issue
Block a user