Lines 51-57
Some portage-provided functions will automatically die upon failure. Others will
Link Here
|
51 |
not. It is for example safe to omit the <c>|| die</c> after a call to <c>epatch</c>, |
51 |
not. It is for example safe to omit the <c>|| die</c> after a call to <c>epatch</c>, |
52 |
but not <c>emake</c>. The reason is that external binaries are not able to call |
52 |
but not <c>emake</c>. The reason is that external binaries are not able to call |
53 |
die that is a bash function. You can see what commands are external binaries |
53 |
die that is a bash function. You can see what commands are external binaries |
54 |
with <c>ls /usr/lib/portage/bin/</c>. |
54 |
with <c>ls /usr/lib*/portage/bin/ebuild-helpers</c>. |
55 |
</p> |
55 |
</p> |
56 |
|
56 |
|
57 |
<p> |
57 |
<p> |
58 |
- |
|
|