diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2010-02-18 14:48:53 -0800 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2010-02-18 14:48:53 -0800 |
commit | 79cc455cb8f2da1155e4d7fd4ddb9c1914ea5889 (patch) | |
tree | 61c607e33a7faed4c3da92b720272d07f2ef7986 /bin | |
parent | cc66847c1095d01fe766e004ad1d5dbf8c77b380 (diff) |
Revert "Make mklib propogate all errors"
This reverts commit d6f55492af3cb82b0113fe6beac0f3494b6e2956.
It's both not portable and not safe to trap & exit on ERR. This will
need to use a more invasive approach that tests return code only for
selected, important commands.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/mklib | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -25,14 +25,6 @@ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -# propagate any errors -function errtrap { - es=$? - exit $es -} -trap errtrap ERR - - # Given a list of files, look for .a archives and unpack them. # Return the original list of files minus the .a files plus the unpacked files. # first param: name of a temp directory (to be deleted when finished) |