From 1e317e8f43b248d0ab6a0684d8b158aa0271231b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20B=C3=BCsch?= Date: Wed, 3 Nov 2010 12:49:38 +0000 Subject: deptest: Add sanity check to avoid trouble with illegal package names SVN-Revision: 23819 --- scripts/deptest.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'scripts/deptest.sh') diff --git a/scripts/deptest.sh b/scripts/deptest.sh index d72b7a0af6..762821a39c 100755 --- 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 -- cgit v1.2.3