You are not logged in.
I have a problem with doing makepkg on
the abs core/kernel26. It aborts with an error thusly:
patching file tools/perf/builtin-top.c
patching file tools/perf/util/header.c
patching file tools/perf/util/hist.c
patching file tools/perf/util/PERF-VERSION-GEN
patching file tools/perf/util/scripting-engines/trace-event-python.c
patching file tools/perf/util/symbol.c
patching file tools/perf/util/trace-event-parse.c
patching file tools/perf/util/ui/browsers/map.c
==> ERROR: A failure occurred in build().
Aborting...
It looks like the patch command done inside the build()
exits with exit code 1 and so build() aborts.
The patch command done internally is:
patch -Np1 -i /home/scott/work/row44svn/air/scott_sandbox/linux_building/abs_kernel/spkkern64/src/patch-2.6.38.7-1-ARCH
and when I do this by hand I get exit code 1.
Whats happenin? Any tips? (i dont see an ans in any forum search to this).
Thanks
Offline
add a || return 0 after the patch command.
no place like /home
github
Offline
Thanks for the basic clue;
actually; doing:
<patch-cmd> || echo "caught patch glitch...continuing.."
will let the build() drive on rather than return at that point.
Thanks alot!
Offline