projects
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8c6fdff
)
deptest: Add sanity check to avoid trouble with illegal package names
author
mb
<mb@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 3 Nov 2010 12:49:38 +0000
(12:49 +0000)
committer
mb
<mb@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 3 Nov 2010 12:49:38 +0000
(12:49 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23819
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
scripts/deptest.sh
patch
|
blob
|
history
diff --git
a/scripts/deptest.sh
b/scripts/deptest.sh
index
d72b7a0
..
762821a
100755
(executable)
--- a/
scripts/deptest.sh
+++ b/
scripts/deptest.sh
@@
-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