Revert "Make mklib propogate all errors"
authorDan Nicholson <dbn.lists@gmail.com>
Thu, 18 Feb 2010 22:48:53 +0000 (14:48 -0800)
committerDan Nicholson <dbn.lists@gmail.com>
Thu, 18 Feb 2010 22:48:53 +0000 (14:48 -0800)
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.

bin/mklib

index fa0c82bf562d9d9cc6041e12e0e06d10fa8233c2..c4b3478c7987b12e012dbd7ff1df31e9de72edb2 100755 (executable)
--- a/bin/mklib
+++ b/bin/mklib
 # 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)