abuild: postcheck for textrels
This commit is contained in:
parent
9b3f778971
commit
7ee8dbc044
@ -581,6 +581,15 @@ postcheck() {
|
|||||||
echo "$i"
|
echo "$i"
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
# test for textrels
|
||||||
|
if ! options_has "textrels"; then
|
||||||
|
local res="$(scanelf --recursive --textrel --quiet "$dir")"
|
||||||
|
if [ -n "$res" ]; then
|
||||||
|
error "Found textrels:"
|
||||||
|
echo "$res"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user