hooks/04-generate-runtime-deps.sh: disable trap on ERR, not too useful on this hook.
This commit is contained in:
parent
31149cc7fe
commit
94eb08b05a
|
@ -33,6 +33,11 @@ add_rundep() {
|
||||||
hook() {
|
hook() {
|
||||||
local depsftmp f j tmplf mapshlibs sorequires
|
local depsftmp f j tmplf mapshlibs sorequires
|
||||||
|
|
||||||
|
# Disable trap on ERR, xbps-uhelper cmd might return error... but not something
|
||||||
|
# to be worried about because if there are broken shlibs this hooks returns
|
||||||
|
# error via msg_error().
|
||||||
|
trap - ERR
|
||||||
|
|
||||||
mapshlibs=$XBPS_COMMONDIR/shlibs
|
mapshlibs=$XBPS_COMMONDIR/shlibs
|
||||||
tmplf=$XBPS_SRCPKGDIR/$pkgname/template
|
tmplf=$XBPS_SRCPKGDIR/$pkgname/template
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue