projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
target: remove CONFIG_IDE_PROC_FS support as well
[openwrt.git]
/
scripts
/
deptest.sh
diff --git
a/scripts/deptest.sh
b/scripts/deptest.sh
index
b57612a
..
047a0ce
100755
(executable)
--- a/
scripts/deptest.sh
+++ b/
scripts/deptest.sh
@@
-75,6
+75,11
@@
clean_kernel_build_dir()
)
}
)
}
+stamp_exists() # $1=stamp
+{
+ [ -e "$1" -o -L "$1" ]
+}
+
test_package() # $1=pkgname
{
local pkg="$1"
test_package() # $1=pkgname
{
local pkg="$1"
@@
-88,13
+93,13
@@
test_package() # $1=pkgname
local STAMP_FAILED="$STAMP_DIR_FAILED/$pkg"
local STAMP_BLACKLIST="$STAMP_DIR_BLACKLIST/$pkg"
rm -f "$STAMP_FAILED"
local STAMP_FAILED="$STAMP_DIR_FAILED/$pkg"
local STAMP_BLACKLIST="$STAMP_DIR_BLACKLIST/$pkg"
rm -f "$STAMP_FAILED"
-
[ -e "$STAMP_SUCCESS" -a
$force -eq 0 ] && return
+
stamp_exists "$STAMP_SUCCESS" && [
$force -eq 0 ] && return
rm -f "$STAMP_SUCCESS"
[ -n "$SELECTED" ] || {
echo "Package $pkg is not selected"
return
}
rm -f "$STAMP_SUCCESS"
[ -n "$SELECTED" ] || {
echo "Package $pkg is not selected"
return
}
-
[ -e "$STAMP_BLACKLIST" -a
$force -eq 0 ] && {
+
stamp_exists "$STAMP_BLACKLIST" && [
$force -eq 0 ] && {
echo "Package $pkg is blacklisted"
return
}
echo "Package $pkg is blacklisted"
return
}
This page took
0.020726 seconds
and
4
git commands to generate.