deptest: Also accept stamps that are broken links.
SVN-Revision: 24350
This commit is contained in:
parent
6541593b34
commit
58255d44e2
1 changed files with 7 additions and 2 deletions
|
@ -75,6 +75,11 @@ clean_kernel_build_dir()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stamp_exists() # $1=stamp
|
||||||
|
{
|
||||||
|
[ -e "$1" -o -L "$1" ]
|
||||||
|
}
|
||||||
|
|
||||||
test_package() # $1=pkgname
|
test_package() # $1=pkgname
|
||||||
{
|
{
|
||||||
local pkg="$1"
|
local pkg="$1"
|
||||||
|
@ -88,13 +93,13 @@ test_package() # $1=pkgname
|
||||||
local STAMP_FAILED="$STAMP_DIR_FAILED/$pkg"
|
local STAMP_FAILED="$STAMP_DIR_FAILED/$pkg"
|
||||||
local STAMP_BLACKLIST="$STAMP_DIR_BLACKLIST/$pkg"
|
local STAMP_BLACKLIST="$STAMP_DIR_BLACKLIST/$pkg"
|
||||||
rm -f "$STAMP_FAILED"
|
rm -f "$STAMP_FAILED"
|
||||||
[ -e "$STAMP_SUCCESS" -a $force -eq 0 ] && return
|
stamp_exists "$STAMP_SUCCESS" && [ $force -eq 0 ] && return
|
||||||
rm -f "$STAMP_SUCCESS"
|
rm -f "$STAMP_SUCCESS"
|
||||||
[ -n "$SELECTED" ] || {
|
[ -n "$SELECTED" ] || {
|
||||||
echo "Package $pkg is not selected"
|
echo "Package $pkg is not selected"
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
[ -e "$STAMP_BLACKLIST" -a $force -eq 0 ] && {
|
stamp_exists "$STAMP_BLACKLIST" && [ $force -eq 0 ] && {
|
||||||
echo "Package $pkg is blacklisted"
|
echo "Package $pkg is blacklisted"
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue